@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;

}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #eff0f4;
}

.container
{
    position: relative;
    left: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .drop
{
    position: relative;
    width: 600px;
    height: 600px;
    box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05),
    25px 35px 20px rgba(0,0,0,0.05),
    25px 30px 30px rgba(0,0,0,0.05),
    inset -20px -20px 25px rgba(255,255,255,0.9);
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 52% 48% 33% 67% / 38% 45% 55% 62%;
    
}
.container .drop:hover
{
    border-radius: 50%;
}
.container .drop::before
{
    content: '';
    position: absolute;
    top: 90px;
    left: 85px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
}
.container .drop::after
{
    content: '';
    position: absolute;
    top: 130px;
    left: 110px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
}
.container .drop .content
{
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding: 40px;
gap: 15px;

}
.container .drop .content h1
{
    position: relative;
    margin-bottom: 30px;
    font-weight: 900;

    /* color: #333; */
    font-size: 3.2em;
    color: #23abff;
}
.container .drop .content form
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.container .drop .content form .inputBox
{
position: relative;
width: 400px;
margin-bottom: 5px;
box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
inset -2px -5px 10px rgba(255,255,255,1),
    15px 15px 10px rgba(0,0,0,0.05),
    15px 10px 15px rgba(0,0,0,0.025);
    border-radius: 25px;
}

.container .drop .content form .inputBox::before
{
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
    
}
input::placeholder
{
color: rgb(243, 17, 194);
color: #23abff;
/* font-weight: 500; */
}
.container .drop .content form .inputBox input
{
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 1.2em;
    font-weight: 600;
    padding: 15px 15px;
color: #25d7ba;

    
}
.container .drop .content form .inputBox input[type="submit"]
{
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    cursor: pointer;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.container .drop .content form .inputBox:last-child
{
    width: 180px;
    background: #23abff;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.01),
    15px 15px 10px rgba(0,0,0,0.05),
    15px 10px 15px rgba(0,0,0,0.025);
    transition: 0.5s;
}
.container .drop .content form .inputBox:last-child:hover
{
    width: 230px;
}
.btns
{
    position: absolute;
    /* right: 280px; */
    /* bottom: 100px; */
    /* le css si le popup n'existe pas début */
    right: -120px;
    bottom: 0;
    /* le css si le popup n'existe pas fin */
    width: 120px;
    height: 120px;
    background: #25d7ba;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    font-size: 0.8em;
    transition: 0.25s;
    text-align: center;
    box-shadow: inset 10px 10px 10px rgba(190,1,254,0.05),
    15px 25px 10px rgba(190,1,254,0.1),
    15px 20px 20px rgba(190,1,254,0.1),
    inset -10px -10px 15px rgba(255,255,255,0.5);
    border-radius: 44% 56% 65% 35% / 57% 58% 42% 43% ;
}
.btns:hover
{
    border-radius: 90%;
}
.btns::before
{
    content: '';
    position: absolute;
    top: 15px;
    left: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.45;
}
.btns.signup
{
    /* bottom: 250px; */
    /* le css si le popup n'existe pas début */
    bottom: 150px;
    right: -120px;
    /* le css si le popup n'existe pas fin */

    /* right: 270px; */
    width: 80px;
    height: 80px;
    border-radius: 49% 51% 52% 48% / 63% 59% 41% 37%;
    background: #01b4ff;
    box-shadow: inset 10px 10px 10px rgba(190,1,254,0.05),
    15px 25px 10px rgba(1,180,255,0.1),
    15px 20px 20px rgba(1,180,255,0.1),
    inset -10px -10px 15px rgba(255,255,255,0.5);
}

.btns.signup::before
{
    left: 20px;
    width: 15px;
    height: 15px;
}
.btns:hover
{
    border-radius: 90%;
}

@media screen and (max-width:772px){
    .container .drop
{
    width: 500px;
    height: 500px;
    margin-left: 70px;
    margin-right: -80px;

}
.btns{
    display: none;
}
}
@media screen and (max-width:519px) {
    .container .drop
        {
            /* width: 290px;
            height: 290px; */
            width: 350px;
    height: 350px;
            margin-right: -80px;
            margin-top: -25px;
        }
    .container .drop::before,
    .container .drop::after
    
    {
     display: none;
    }
    .container .drop .content h1
    {
        position: relative;
        font-size: 0.9em;
    
    }
    .container .drop .content form
    {
        gap: 10px;
    }
    .container .drop .content form .inputBox
    {
    width: 150px;
    
    
    }
    .container .drop .content form
    {
        margin-top: -25px;
    
    }
    .container .drop .content form .inputBox input
    
    {
        margin-top: -25px;
        padding: 7px 10px;
        font-size: .5em;
    
    }
    .container .drop .content form .inputBox:last-child
    {
        width: 80px;
        font-size: 0.5em;
       
    }
    .container .drop .content form .inputBox:last-child:hover
    {
        width: 110px;
    
    }
    .btns{
        display: none;
    }
    
    }
    @media screen and (max-width:418px){
        .container .drop
    {
        margin-left: 80px;
    }
    }