.sign-in-container{
    height: 500px;
    width: 900px;
    margin: 0 auto;
    margin-top: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sign-in-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 450px;
    padding: 20px;
    border: 2px solid  rgb(224, 224, 224);
}

.sign-in-form #number-error{
    color: red;
    font-size: 14px;
    display: none;
}

.sign-in-form p a{
    color: #049cb9;
}

.sign-in-form h1,
.sign-in-form h3{
    text-align: center;
    color: #00633f;
}
.sign-in-form h1{
    font-size: 25px;    
}
.user-number{
    padding-left: 10px;
    margin-top: 20px;
}

.sign-in-form:nth-child(2){
    font-size: 12px;
}
.user-number{
    width: 100%;
    height: 40px;
}

.continue-btn{
    background-color: #00633f;
    color: white;
    border: none;
    margin: 10px 0px;
}

.sign-in-form button{
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: bold;
}

.login-user-btn{
    border: none;
    text-align: center;
    color: #00633f;

}

.sign-in-form img{
    height: 30px;
}
.sign-banner{
    background-color: #00633f;
    width: 450px;
    color: white;
    text-align: center;

}

.sign-banner img{
    width: 100%;
    height: 100%;
}
.google-signIn,
.facebook-signIn{
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: white;
    border: 1px solid  rgb(184, 184, 184);
}

.google-signIn:hover, 
.facebook-signIn:hover{
    background-color: rgb(239, 239, 239);
}


/* Sign up form css*/

.sign-Up-from{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.sign-Up-from input{
    height: 40px;
    padding-left: 15px;
}
.Input-filed{
    display: flex;
    position: relative;
}
.Input-filed input{
    width: 100%;
}

.Input-filed span{
    position: absolute;
    text-align: center; 
    right: 17px;
    bottom: 14px;
    color: red;
    font-size: 14px;
    font-weight: bold;

}

.sign-Up-from .otp-message{
    font-size: 15px;
    color: #00633f;
    font-weight: bold;
    margin-top: 15px;
}
.sign-Up-from .sign-up-btn{
    background-color: #00633f;
    color: white;
    border: none;
}

/**** Login Form*/



.login-form{
    gap: 10px;
}

#user-login-form  input{
    height: 50px;
}

#user-email-filed{
    margin-top: 20px;
    margin-bottom: 30px;
}


.forgot-password{
    display: flex;
    flex-direction: row;
    max-height: 20px;
    align-items: center;
    justify-content: space-between;
    margin: 10px 10px;

}

.forgot-password label{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

 
#user-login-form .user-password,
#user-login-form .user-email{
    padding-left: 50px; 
    background-image: url('/images/social-media-icons/icons-password.png');
    background-size: 18px; 
    background-repeat: no-repeat;
    background-position: 15px center; 
    border: 2px solid  rgb(224, 224, 224);
  }


  #user-login-form .user-email{
    background-image: url('/images/social-media-icons/user-profile.png') ;
}

#user-password-filed{
    margin-top: 20px;
    margin-bottom: 5px;
}

#user-login-form span{
    font-size: 12px;
    font-weight: normal;
    padding-bottom: 4px;
}

#user-login-form .wrong-password{
    color: red;
    font-size: 13px;
}

.login-form #new-member{
    text-align: center;
}

.login-form #new-member a{
    color: #049cb9;
    cursor: pointer;
}

.login-form .login-button{
    background-color: #00633f;
    color: white;
    border: none;
    margin-top: 30px;
}

.sign-social-button{
    display: flex;
    gap: 20px;
}

.login-form .google-login,
.login-form .facebook-login{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color:white;
    border: none;
}


.sign-social-button .google-login{
    background-color: #d34836 ;
}

.sign-social-button .facebook-login{
    background-color: #3b5998;
}