:root{
    --Purple-: 259, 100%, 65%;
    --Light-Red-: 0, 100%, 67%;
    --White-: 0, 0%, 100%;
    --Off-White-: 0, 0%, 94%;
    --Light-Grey-: 0, 0%, 86%;
    --Smokey-Grey-: 0, 1%, 44%;
    --Off-Black-: 0, 0%, 8%;
}

*, *::after, *::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: hsl(var(--Off-White-));
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    background: hsl(var(--White-));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    width: 40%;
    flex-direction: column;
    border-radius: 30px;
    border-bottom-right-radius: 100px;
}

.top{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-start;
    margin-bottom: 50px;
}

.top > .input{
    width: 30%;
}

.top > .input > p:nth-child(1){
    font-size: 8px;
    color: hsl(var(--Smokey-Grey-));
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.top > .input > input{
    width: 120px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: hsl(var(--Off-Black-));
    font-weight: 800;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid hsl(var(--Smokey-Grey-));
}

.top > .input > input:focus{
    outline: 2px solid hsl(var(--Purple-));
    border: 0;
}

.top > .input > input::placeholder{
    color: hsl(var(--Smokey-Grey-));
    font-weight: 800;
    font-size: 24px;
}

.top > .input > p:nth-child(3), 
.top > .input > p:nth-child(4){
    font-size: 8px;
    color: hsl(var(--Light-Red-));
    display: none;
}

.mid{
    width: 100%;
    height: 1px;
    background: hsl(var(--Light-Grey-));
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mid > .img{
    background: hsl(var(--Purple-));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mid > .img:hover{
    background: hsl(var(--Off-Black-));
}

.down{
    margin-top: 50px;
    width: 100%;

}

.down > .row{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.down > .row > h1{
    font-size: 60px;
    line-height: 35px;
}

.down > .row > h1:nth-child(1){
    color: hsl(var(--Purple-));
    margin-right: 8px;
}


@media (300px <= width <= 500px){
    body{
        padding: 10px;
    }
    .container{
    width: 100%;
    padding: 30px 20px;
    }
    .top{
        width: 100%;
    }
    .top > .input > input{
        width: 80px;
        padding: 5px 10px;
        font-size: 20px;
    }
    .top > .input > input::placeholder{
        font-size: 18px;
    }
    .mid{
        justify-content: center;
    }
    .mid > .img{
        width: 60px;
        height: 60px;
    }
    .mid > .img > img{
        width: 35px;
    }
    .down{
        margin-top: 80px;
    }
    .down > .row > h1{
        font-size: 45px;
        line-height: 20px;
    }
}