@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXpsog.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXpsog.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXpsog.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXpsog.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root{
  --blueColor: #034a9a;
  --mainColor: rgba(117, 161, 54, 1);
  --footerColor:  #3d5503;
  --greenColor:  #304302;
  --darkGreen: #1a2501;
  --redColor: #ff0000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --grayColor: #f1f1f1;
  --fontFamily:'Montserrat', sans-serif;
  --centerAlign: center;
  --borderRadius: 5px;
  --textDecorationNone: none;
}
body{
  font-family: var(--fontFamily) !important;
  background: var(--grayColor);
}
h1, h2, h3, h4{
  font-family: var(--fontFamily) !important;
}

.auth_content{
  display: flex;
  justify-content: var(--centerAlign);
  padding: 100px 0px;
}

.auth_content .inner_content{
  background: var(--whiteColor);
  border-radius: var(--borderRadius);
}
.auth_content .inner_content .logo_section{
  background: var(--whiteColor);
  border: 2px solid var(--blueColor);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  justify-content: var(--centerAlign);
  align-items: var(--centerAlign);
  margin-top: -50px;
  margin-left: 20px;
}

.auth_content .inner_content .splitter{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:50px 20px;
  background: var(--blueColor);
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
}

.auth_content .inner_content form{
  padding:20px;
}

.auth_content .inner_content .error_message{
  background-color: green;
}
form label{
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}
form div.forgot_password{
  padding: 20px;
  text-align: var(--centerAlign);
}
form div.forgot_password a{
  text-decoration: none;
  color: var(--blueColor);
  font-weight: bold;
  font-size: 13px;
}
form div.forgot_password a i{
  font-size: 20px;
}
/* .divider{
  width: 100%;
  height: 2px;
  background: var(--blackColor);
  margin-bottom: 20px;
} */
form div.register_or_login{
  background: var(--grayColor);
  padding: 20px;
}
form div.register_or_login p{
  font-size: 13px;
  text-align: var(--centerAlign);
}
form div.register_or_login p a{
  color: var(--blueColor);
  font-weight: bold;
  text-decoration: none;
}

form input{
  display: block;
  padding: 10px;
  margin: 10px 0px;
  border: 2px solid var(--grayColor);
  border-radius: var(--borderRadius);
  outline: none;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
}
form button{
  background: var(--blueColor);
  color: var(--whiteColor);
  height: 35px;
  border-radius: var(--borderRadius);
  font-weight: bold;
  border: none;
  width: 100%;
  font-size: 13px;
}

.already_exist{
  color: var(--redColor);
  font-weight: bold;
}
.available{
  color: var(--greenColor);
  font-weight: bold;
}

/* password_reset_page */
.password_reset_page{
  padding: 100px 0px;
}
.password_reset_page .form_content{
  background: var(--whiteColor);
  border-radius: var(--borderRadius);
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.password_reset_page .form_content .form-buttons{
  display: flex;
  justify-content: space-between;
  align-items: var(--centerAlign);
}
.password_reset_page .form_content .form-buttons a{
  border: 2px solid var(--grayColor);
  padding: 5px 10px;
  border-radius: var(--borderRadius);
  font-size: 13px;
  font-weight: bold;
  color: var(--blackColor);
  margin-left: 5px;
}
