@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montez&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&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&family=Sevillana&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    padding: 0 10px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url(hair\ 3.jpg);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    align-items: center;
    font-family: DM sans;
}
.login-form{
    max-width:500px;
    width: 100%;
    height: 850px;
    border-radius: 6px;
    background: transparent;
    backdrop-filter: blur(30px);
    color: #ead6cd;
    padding: 41px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.login-form h3{
    text-align: center;
    font-size: 1.9rem;
    color:#b76e;
    font-family: Poppins;
    padding-bottom: .7rem;
}
.login-form p{
    font-weight: 600;
    text-align: center;
    font-family: Montez;
    font-size: 2.3rem;
    color: #e6d;
}
.input-box input{
    display: block;
    margin-bottom: 8px;
    font-weight:500;
    height: 40px;
    width: 100%;
    border: 1px solid #dadae2;
    outline: none;
    border-radius: 5px;
    padding: 0px 20px;
    margin-bottom: 25px;
    font-size: 17px;
    transition: 0.4s ease;
}
.input-box input:focus{
    border-color: #d662d6;
}
.input-box select{
    display: block;
    margin-bottom: 8px;
    font-weight:500;
    height: 45px;
    width: 100%;
    border: 1px solid #dadae2;
    outline: none;
    border-radius: 5px;
    padding: 0px 20px;
    margin-bottom: 25px;
    font-size: 17px;
    transition: 0.4s ease;
}
.input-box select:focus{
    color: #e6d;
}
.input-box{
    position: relative;
}
a{
    text-decoration: none;
    font-weight: 500;
    color:#999;
}
a:hover{
    text-decoration: underline;
    color:#fff;
}
textarea{
    width: 100%;
    height: 45px;
    font-family: DM sans;
}
button{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: none;
    font-weight: 550;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 28px;
    margin-top: 20px;
    color: #e6d;
    cursor: pointer;
    transition: 0.4s ease;
}
button:hover{
    transform: scale(1.1);
    background: transparent;
    border: 2px solid #e6d;
    color: #fff;
}