@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFBCE;
    padding: 30px;
}

.container{
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #FFFFFF;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.container .cover{
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 50%;
    z-index: 98;
    border-radius: 0 10px 10px 0;

}

.container .cover img{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 0 10px 10px 0;
 
}

.container .cover .text{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2{
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0  1px  0   rgba(0, 0, 0, 0.3),
                 0  2px  0   rgba(0, 0, 0, 0.3),
                 0  3px  0   rgba(0, 0, 0, 0.3),
                 0  4px  0   rgba(0, 0, 0, 0.3),
                 0  5px  0   rgba(0, 0, 0, 0.3);
}
.container form{
    height: 100%;
    width: 100%;
    background: #FFFFFF;
}

.login-form{
    width: calc(100% / 2 - 25px);
}

form .title{
    font-size: 24px;
    font-weight: 500;
    color: #006400;
}

form .input-box{
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.input-box input{
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.input-box input:focus,
.input-box input:valid{
    border-color: #006400;
}
.input-box i{
    position: absolute;
    color: #006400 ;
    font-size: 17px;
}

.eye{
    position: absolute;
    margin-left: 95%;
    margin-top: -13px;
}

#hide1{
    display: none;
}
form .text{
    font-size: 14px;
    font-weight: 500;
    color: #343434;
}

form .text a{
    text-decoration: none;
    color: #006400;
}

form .text a:hover{
    text-decoration: underline;
}
form .button{
    color: #FFFFFF;
    margin-top: 40px;
}
form .button input{
    color: #FFFFFF;
    background: #006400;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4 ease;
}

form .button input:hover{
    background: #95E580;
}

.error{
    color: red;
    font-size: 12px;
    font-weight: 500;
}

.msg{
    color: #008080;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #9FE2BF;
}

@media (max-width: 700px){
    .container .cover{
        display: none;
    }

    .login-form{
        width: 100%;
    }
}