/*!
 * NEORK HRMS LOGIN PAGE STYLESHEET
 * 
 *   AUTHOR:  ANANTHU
 *   WRITTEN ON:27 JAN 2021
 *   VERSION : 1.0
       1:LOGIN PAGE
*/
@font-face {
  font-family: Roboto-Light;
  src: url("../fonts/Custom_font/Roboto-Light.ttf");
}
@font-face {
  font-family: Roboto-Medium;
  src: url("../fonts/Custom_font/Roboto-Medium.ttf");
}
@font-face {
  font-family: Roboto-Regular;
  src: url("../fonts/Custom_font/Roboto-Regular.ttf");
}
@font-face {
  font-family: Roboto-Bold;
  src: url("../fonts/Custom_font/Roboto-Bold.ttf");
}
@font-face {
  font-family: Roboto-Black;
  src: url("../fonts/Custom_font/Roboto-Black.ttf");
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --main-bg: #F25F58;
}
html {
  font-size: 62.5%;
  box-sizing: inherit;
}
body {
  overflow-x: hidden;
}
.main-bg {
  background: var(--main-bg) !important;
}
button:focus {
  border: 1px solid var(--main-bg) !important;
  box-shadow: none !important;
}
input:focus {
  border-bottom: 1px solid var(--main-bg) !important;
  box-shadow: none !important;
}
.form-check-input:checked {
  background-color: var(--main-bg) !important;
  border-color: var(--main-bg) !important;
}
.loginWrapper {
  min-width: 50rem;
  padding: 1.6rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #fff;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
  z-index: 9;
  border-radius: 10px;
}
.loginWrapper h2 {
  font-size: 2.4rem;
}
#wrapper {
  position: relative;
  height: 100%;
  background: #FFF !important;
}
.form-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  max-width: 30rem;
}
.form-img img {
  width: 100%;
}
.loginBtn {
  background: var(--main-bg);
  /*-webkit-box-shadow: 0px 6px 12px rgb(2 198 193 / 40%);*/
  /*box-shadow: 0px 6px 12px rgb(2 198 193 / 40%);*/
  box-shadow: none !important;
  border-radius: 5px;
  width: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Roboto-Medium, sans-serif;
  padding: 1rem;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.loginBtn:hover, .loginBtn:focus {
  background: #ffffff;
  border: 1px solid var(--main-bg);
  color: var(--main-bg);
}
#bgWrap label {
  font-family: Roboto-Medium, sans-serif;
  font-size: 1.4rem !important;
  color: #9e9e9e;
}
.forgot__password {
  font: 1.6rem Roboto-Medium, sans-serif;
  color: var(--main-bg);
  transition: all 0.3s ease-in-out;
}
.forgot__password:hover {
  color: #212529;
}
.loginWrapper h3 {
  font: 1.6rem Roboto-Regular, sans-serif;
  color: #9e9e9e;
  line-height: 2.4rem;
  max-width: 40rem;
  text-align: center;
}
#bgWrap {
  position: relative;
}
.vh--100 {
  height: 100vh;
}
.formBg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.8;
  /* background-image: linear-gradient(
      0deg,
      rgba(91, 197, 192, 0.5),
      rgba(22, 182, 195, 0.5)
    ); */
}
.formBg label {
  font-family: Roboto-Medium, sans-serif;
  font-size: 1.4rem !important;
  color: #9e9e9e;
}
.formBg {
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .formBg {
    background: url("../images/bg.jpg") no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1199px) {
  .formBg,
  .form-img {
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-img {
    height: 100%;
  }

  .loginWrapper {
    top: unset;
    left: unset;
    transform: unset;
    position: relative;
    z-index: 9;
  }
  .form-img {
    top: unset;
    left: unset;
    transform: unset;
    max-width: 24rem;
    margin-right: 0;
    margin-left: auto;
    margin-right: auto;
    position: unset;
  }
  .form-img img {
    margin: 2.4rem 0;
  }
}
@media screen and (max-width: 575px) {
  .loginWrapper {
    min-width: 100%;
  }
}
.border--style{
    background: transparent!important;
    border: 1px solid var(--main-bg)!important;
    color: var(--main-bg)!important;
}
.border--style:hover,.border--style:focus{
    background: var(--main-bg)!important;
    border: 1px solid transparent!important;
    color: #fff!important;
}
