@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}
.container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0, 0%, 94%);
}
.container .content{
    width: 500px;
    padding: 30px;
    border-radius: 10px 10px 120px 10px;
    background: hsl(0, 0%, 100%);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
.content .header{
    display: flex;
    align-items: center;
}
.header .l-i{
    display: flex;
    flex-direction: column;
}
.l-i label{
    font-size: 12px;
    font-weight: 600;
    color: hsl(0, 1%, 44%);
}
.l-i input{
    width: 100px;
    padding: 5px 10px;
    margin-right: 30px;
    font-size: 26px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 94%);
    outline: none;
}
.l-i input:focus{
    border: 2px solid hsl(259, 100%, 65%);
}
.l-i input.error{
    border-color: hsl(0, 100%, 67%);
}
.l-i .error-text{
    font-size: 10px;
    font-weight: 500;
    color: hsl(0, 100%, 67%);
}
.content .submit{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.submit hr{
    width: 87%;
}
.submit button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 5px;
    outline: none;
    border: none;
    background: hsl(259, 100%, 65%);
    cursor: pointer;
}
.submit button img{
    width: 35px;
}
.submit button:hover{
    background: hsl(0, 0%, 8%);
}
.data h1{
    color: hsl(0, 0%, 8%);
    font-size: 50px;
    font-style: italic;
    font-weight: 800;
}
.data h1 span{
    color: hsl(259, 100%, 65%);
}
@media (max-width: 400px) {
    .content{
        max-width: 320px;
    }
    .l-i input{
        width: 80px;
        font-size: 18px;
        margin-right: 10px;
    }
    .submit{
        margin-top: 20px;
    }
    .submit button{
        width: 40px;
        height: 40px;
    }
    .submit button img{
        width: 25px;
    }
    .data h1{
        font-size: 42px;
    }
    .l-i .error-text{
        font-size: 8px;
    }
}