/* ROBOTO FONT */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* POPPINS FONT */
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto',sans-serif;
}   
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.img {
    position: absolute;
    top: 1%;
    left: 1%;
    max-width: 175px;
    height: 60px;
    margin-right: 100%;
  }
  .img2 {
    position: absolute;
    top: 13%;
    left:10%;
    max-width: 88%;
    height: 78%;
    margin-right: 100%;
    border-radius: 76px;
  }

.login-box{
    position: absolute;
    top:14%;
    right:  10%; 
    width: 490px;
    height: 520px;
    border-radius: 10px;
 
}
.login-header{
    display: flex;
    flex-direction: column;
    text-align: left;
 
    margin: 20px 0 50px 0;
}
.login-header header{
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 3px;
}
.login-header p{
    color: #555;
    font-size: 15px;
}
.input-box{
    position: relative;
    width: 90%;
}
.input-box label{
    position: absolute;
    top: 10px;
    left: 15px;
    color: #555;
    transition: .15s ease-in-out;
}
.input-box input{
    width: 110%;
    height: 40px;
}
.input-box .input-field{
    font-size: 1em;
    color: #333;
    padding-left: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline: none;
}

.input-box input[type="email"]{
    margin-bottom: 10px;
}
.input-box input[type="password"]{
    margin-bottom: 10px;
}
.input-box .input-field:focus{
    border: 2px solid #3EBEE6;
}
.input-field:focus ~ label, .input-field:valid ~ label{
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #3EBEE6;
    background: #FFF;
    padding: 0 5px;
}
.input-field:valid ~ label{
    color: #555;
}
.forgot{
    display: flex;
    justify-content: space-between ;
    margin-bottom: 20px;

}
section{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}
#check{
    margin-right: 4px;
}
section .forgot-link{
    font-weight: 500;
    text-decoration: none;
    color: #FF8682;
}
.input-submit{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #FFF;
    background: #3EBEE6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.middle-text{
    position: relative;
    width: 100%;
    margin: 30px 0;
    top: 8%;

}
.or-text{
    font-family: 'Poppins', sans-serif;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    color: #777;
    padding: 10px;
    top: 8%;
}
hr{
    border: 1px solid #ddd;
}
.social-sign-in{
    display: flex;
    gap: 15px;
    position: relative;
    top: 9%;
}
button{
    position: relative;
    top: 19%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    cursor: pointer;
}
.input-google{
    justify-content: center;
    width: 153px;
    height: 50px;
    border: 1px solid #3EBEE6;
 background-color: #FFF;
}
.input-google img{
    width: 27px;
}

.input-twitter{
    justify-content: center;
    width: 153px;
    height: 50px;
    border: 1px solid #3EBEE6;
    background-color: #FFF;
}
.input-twitter img{
    width: 30px;
}
.input-face{
    justify-content: center;
    width: 153px;
    height: 50px;
    border: 1px solid #3EBEE6;
 background-color: #FFF;
}
.input-face img{
    width: 27px;
}
.input-google:hover,
.input-twitter:hover,
.input-face:hover,
.input-submit:hover{
    opacity: 0.9;
}
.sign-up{
    position: absolute;
    top: 67%;
    right: 30%;
}
.sign-up p{
    font-size: 14px;
    color: #333;
}
.sign-up p>a{
    text-decoration: none;
    color: #3EBEE6;
}
@media only screen and (max-width: 510px){
    .login-box{
        padding: 10px 30px;
        margin: 20px;
    }
}
@media only screen and (max-width: 415px){
    .login-box{
        padding: 10px 25px;
        margin: 15px;
    }
}