﻿body {
}
@font-face{
  font-family:'Tahoma';
  src:url('fonts/tahoma_Regular_font.ttf') format('ttf');
  font-style: normal;
  font-weight: normal;
}

*{
  margin: 0;
  padding: 0;
  font-family:'Tahoma';
}

body{
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

signInSignUpForget_Page_body {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-form img, .forgot_password_form img {
    margin: 0 0 60px;
}

.login-form h4, .forgot_password_form h4{
  color: #5E6278;
  font-size: 24px;
  margin-bottom: 20px;
}

.login-form, .forgot_password_form {
  position: relative;
  top: 50%;
  transform: translate(-0%, -50%);
  z-index: 1;
  background: #FFFFFF;
  max-width: 460px;
  margin: auto;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
}

/*.forgot_password_form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    width: 460px;
    max-width: 460px;
    margin: 0 auto 20px;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}*/

.login-form input, .forgot_password_form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #ECF3F5;
  color: #5E6278;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 10px;
}

.logIn_btn, .resetPassword_btn {
   text-align: center;
   font-weight: 600;
   font-size: 20px;
   cursor: pointer;
   border: none;
   border-radius: 7px;
   background: #da0a2b;
   color: #fff;
   outline: 0;
   width: 100%;
   padding: 15px 20px;
   -webkit-transition: all 0.3 ease;
   transition: all 0.3 ease;
}

.logIn_btn:hover, .logIn_btn:active, .logIn_btn:focus, 
.resetPassword_btn:hover, .resetPassword_btn:active, .resetPassword_btn:focus {
  background: #b3021e;
}

.login-form .message a, .forgot_password_form .message a  {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  float: left;
  margin: 0 0 50px;
}

.signUp_message {
  color: #5E6278;
  font-size: 16px;
  bottom: -63px;
  position: absolute;
  left: 20px;
}

.login-form .register-form, .forgot_password_form .register-form {
  display: none;
}



/*Forget Password Page CSS*/


