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

*{
    margin: 0;
    padding: 0;
    font-family: josefin sans;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
   /* background: linear-gradient(40deg,orangered,orange, orangered); */
   background-image: url(img/allyson-carter-qvmtasZpHKQ-unsplash.jpg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.form-box{
    position: relative;
    width: 400px;
    height: 450px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    box-shadow: 2px 2px 2px 2px rgba(15, 13, 13, 0.59);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

h2{
    font-size: 2em;
    color: #da5908;
    text-align: center;
}

.inputbox{
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid white;
}

.inputbox label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #fbeee6;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}
input:focus ~ label,
input:valid ~ label {
    top: -5px;
}


.inputbox input{
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0 35px 0 5px;
    color: #fbeee6;

}
.inputbox i{
    position: absolute;
    right: 8px;
    color: #da5908;
    font-size: 1.2em;
    top: 20px;
}

.forget{
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: center;
}

.forget label input{
    margin-right: 3px;
}

.forget label a{
    color: #da5908;
    text-decoration: none;
}


.forget label a:hover{
    text-decoration: underline;
}


button{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    color: #da5908;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    background-color: #fbeee6;
    transition: 1.5s;
}

button:hover{
    color: #fbeee6;
    background-color: #da5908;
}

.register{
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}

.register p a{
    text-decoration: none;
    color: #da5908;
    font-weight: 600;
}

.register p a:hover{
    text-decoration: underline;

}


#signup{
    display: none;
}



 


