.loginBox {
  /* margin: 3%; */
  min-height: 70vh !important;
  background: rgba(255, 255, 255, 0.8);
}

/*.loginBox{margin: 4%; min-height: 82vh!important;   background: rgba(255,255,255, .8);}*/

.loginBox:hover {
}

.forgotBox {
  padding: 0 !important;
}

a {
  color: #977a3e;
}

.centered {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none;
}

.mt-0 {
  margin-top: 0 !important;
}

.auth-pages .sign-up a {
  color: #977a3e;
}

.auth-pages button.enter-btn {
  font-size: 16px;
  cursor: pointer;
  width: 26%;
  padding: 4px;
  height: 48px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* .auth-pages.login-2.login-2 {
      background-image: url(../../images/loginbg6.jpg);
      background-size: contain;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 0;
      height: 100%;
      min-height: 100vh;
      width: 100%;
  } */

.auth-pages.login-2.login-2 {
  background-repeat: repeat;
  background-size: initial;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  background: #3e7ea8 url(../../images/bg-pattern1.png);
}

.minara {
  background: url(../../images/minara3.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.loginLogo img {
  width: 40%;
  margin-top: 18%;
}

.loginPage .btn-primary2 {
  background-color: #0c582f;
  border-color: #1e3c24;
}

.loginPage .btn-primary {
  background-color: #ae802c;
  /* border-color: #ffffff; */
  color: #fff;
  margin-top: 5px;
}

.btn-primary:hover {
  color: #fff;
  /*background-color: #8d7039;    border-color: #5a3b1b;*/
}

.input-group-addon,
.asColorPicker-trigger {
  background: #b3bccf;
  width: 38px;
  border-top: 1px solid #ffffff !important;
  border-left: 1px solid #ffffff !important;
  border-bottom: 1px solid #ffffff !important;
}

.mb50 {
  margin-bottom: 24px;
  margin-top: 0px;
}

.nopadding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.auth-pages .form-group .form-control {
  /* border-radius: 0; */
  /*  border-top-right-radius: 3px;
       border-bottom-right-radius: 3px;*/
  /* border: 1px solid #927a35; */
  height: 48px;
}

/*.addbclr .auth-pages .form-group .form-control{border-color: #656362!important;}*/

.loginPage .input-group {
  /* width: 72%!important;
      float: left; */
}

.subtitle {
  margin-bottom: 0;
  color: #ae802c;
}

h2.title-login {
  color: white;
  /* text-transform: uppercase; */
  margin-bottom: 0px !important;
  /* border-bottom: 1px solid #9a8753; */
  margin-top: 0;
  font-family: serif;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.py-5 {
  padding-bottom: 3rem !important;
}

.px-5 {
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
  padding-left: 46px !important;
  padding-right: 46px !important;
}

.card {
  border: 0;
  border-radius: 5px;
  box-shadow: 1.5px 2.6px 24px 0 rgba(0, 35, 136, 0.08);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  width: 400px;
}

.input-group {
  display: flex;
}

.ad1 {
  margin-top: 12px;
  color: #ae802c;
}

/*****************************************************************************************/

.loginPage .field {
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 1em;
}

/**
  * Add a transition to the label and input.
  * I'm not even sure that touch-action: manipulation works on
  * inputs, but hey, it's new and cool and could remove the 
  * pesky delay.
  */

.loginPage label,
input {
  transition: all 0.2s;
  touch-action: manipulation;
}

.loginPage input {
  font-size: 1.5em;
  border: 0;
  border-bottom: 1px solid #ae802c;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
}

.loginPage input:focus {
  outline: 0;
  border-bottom: 1px solid #ae802c;
}

.loginPage label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/**
  * Translate down and scale the label up to cover the placeholder,
  * when following an input (with placeholder-shown support).
  * Also make sure the label is only on one row, at max 2/3rds of the
  * field—to make sure it scales properly and doesn't wrap.
  */

/* .loginPage input:placeholder-shown + label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 2.125rem) scale(1.5);
    color: #ae802c;
  } */

/**
  * By default, the placeholder should be transparent. Also, it should 
  * inherit the transition.
  */

/* ::-webkit-input-placeholder {
    opacity: 1;
    color: #ae802c;
  } */
.first::placeholder,
.second::placeholder {
  color: #ae802c;
  opacity: 1;
}

/**
  * Show the placeholder when the input is focused.
  */

/* .loginPage input:focus::-webkit-input-placeholder {
    opacity: 1;
    color: #ae802c;
  } */

/**
  * When the element is focused, remove the label transform.
  * Also, do this when the placeholder is _not_ shown, i.e. when 
  * there's something in the input at all.
  */
/* 
  .loginPage input:not(:placeholder-shown) + label,
  .loginPage input:focus + label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
  } */

.mr-sm-2,
.mx-sm-2 {
  margin-right: 0.5rem !important;
}

.mr-sm-1,
.mx-sm-1 {
  margin-right: 0.5rem !important;
}

/********************************************Gmail login*********************************************/

.active-back {
  color: #919cb2 !important;
}

.active-back:hover {
  cursor: pointer;
  color: #8a8883 !important;
}

.back {
  position: absolute;
  height: 20px;
  width: 90%;
  color: #d6dae4;
  display: block;
  transition: 0.3s;
  margin-left: 20px;
  /* margin-top: 45px;*/
  font-size: 24px;
  text-align: right;
  top: -36px;
}

.shift {
  left: -476px !important;
}

.loginPage input {
  width: 250px;
  height: 35px;
  border-radius: 3px;
  /* border: 1px solid #ae802c; */
  font-size: 14px;
  padding-left: 10px;
  transition: 0.3s;
}

.loginPage input::-webkit-input-placeholder {
  font-size: 14px;
}

/* .loginPage input:focus {
    border-top: 1px solid #ffffff !important;
    border-right: 1px solid #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
    outline-width: 0;
  } */

.loginPage button {
  width: 262px;
  height: 40px;
  background: #ae802c;
  color: #fff;
  font-size: 14px;
  border: 1px solid #286efa;
  border-radius: 3px;
}

.loginPage button:hover {
  /*background: #3c82ff;*/
  cursor: pointer;
  /*width: 26%;*/
  /*padding-left: 6px;*/
  box-shadow: inset 0px 0px 10px #ae802c;
}

.loginPage .form {
  position: relative;
  /*width: 400px;
    height: 400px; */
  /* overflow: hidden; */
  /*height: 135px;*/
  padding: 0 13%;
}

.loginPage .form form {
  margin-top: 10px;
  /* width: 750px; */
}

.loginPage .form form .inputs {
  position: relative;
  left: 0px;
  transition: 0.3s;
}

.loginPage .form form .inputs .mazaraatLogin {
  float: left;
  position: relative;
  width: 274px;
}

.loginPage .form form .inputs .password {
  float: right;
  position: relative;
  width: 274px;
  margin-bottom: 20px;
}

.loginPage .warning {
  color: #f00;
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

.loginPage a {
  font-size: 12px;
  margin-top: 13px;
  color: #fff;
}

.loginPage .loader {
  margin-left: 14%;
  /*margin-top: 22%;*/
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #e8ebf1;
  border-top-color: #927a35;
  animation: spinner 1s infinite linear;
}

@-moz-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**************** pratik **********************/

#loginerr {
  display: none;
}

.alert {
  width: 275px;
  padding: 4px;
  margin-bottom: 4px;
  border: 1px solid transparent;
  border-radius: 4px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 95%;
}

input[type="submit"].btn-block:hover {
  cursor: pointer;
  box-shadow: inset 0px 0px 10px rgb(106, 76, 37);
}

input[type="submit"].btn-block {
  font-size: 16px;
  cursor: pointer;
  width: 52%;
  padding: 4px;
  height: 38px;
  margin-top: 15px;
  /* border-top-left-radius: 0;
      border-bottom-left-radius: 0; */
}

input[type="submit"].btn-block:hover {
  color: #fff;
}

a:hover {
  color: #977a3e;
  cursor: pointer;
  text-decoration: none;
}

.fa.fa-chevron-right {
  padding-left: 4px;
}

.copyright {
  position: absolute;
  bottom: 9px;
  right: 0;
  left: 0;
  font-size: 12px;
  color: #fff;
}

/* Elite 4 Mar 2020 */

.text-white {
  color: white;
}

.text-transform-none {
  text-transform: none !important;
}

.d-block {
  display: block;
}

.mt-10px {
  margin-top: 10px;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
  width: auto !important;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
  background: transparent;
  border: solid 2px white;
}
.styled-checkbox:hover + label:before {
  background: transparent;
  /* #f35429; */
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: transparent;
  /* #f35429; */
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.first,
.second {
  border-top: 1px solid #ffffff !important; /* Top border */
  border-right: 1px solid #ffffff !important; /* Right border */
  border-bottom: 1px solid #ffffff !important; /* Bottom border */
  box-shadow: none !important;
  background-color: #b3bccf;
}

/* Elite 4 Mar 2020 */

/********************************************end Gmail login*********************************************/

@media only screen and (max-width: 1580px) {
  .card-body {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .auth-pages button.enter-btn {
    width: 23%;
  }
  .loginPage .input-group {
    /* width: 68%!important; */
    margin-bottom: 5px;
    margin-right: 0 !important;
  }
  .loginPage .form {
    height: 160px;
  }
  .loginPage input {
    padding-left: 2%;
  }
  .loginPage .form form .inputs .mazaraatLogin,
  .loginPage .form form .inputs .password {
    width: 342px;
  }
  .shift {
    left: -407px !important;
  }
  input[type="submit"].btn-block {
    /* width: 23%; */
  }
}

@media only screen and (max-width: 1300px) {
  .loginLogo img {
    margin-top: 28%;
  }
}

@media only screen and (max-width: 990px) {
  h3.title-login {
  }
  .loginLogo img {
    width: 14%;
    margin-top: 12%;
  }
  .loginPage .form {
    padding: 0 33%;
  }
}

@media only screen and (max-width: 680px) {
  .loginPage .form {
    padding: 0 24%;
  }
  .loginLogo img {
    width: 25%;
  }
}

@media only screen and (max-width: 576px) {
  .loginPage .form {
    padding: 0 20%;
  }
}

@media only screen and (max-width: 462px) {
  .card {
    width: 85%;
    margin-top: 0;
    top: 30px;
  }
  .loginPage .form form .inputs .mazaraatLogin,
  .loginPage .form form .inputs .password {
    width: 300px;
  }
  .shift {
    left: -443px !important;
  }
  /*.loginPage .input-group{width: 40%!important;}*/
  .loginLogo img {
    width: 35%;
    margin-top: 20%;
  }
}

@media only screen and (max-width: 424px) {
}

@media only screen and (max-width: 380px) {
}
