@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


body {
  font-family: "Raleway";
  background-image: url(../../img/bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-form {
  position: relative;
  min-height: 100vh;
  z-index: 0;

  justify-content: center;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
}

.container {
  max-width: 800px;
}

.login-form h1 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 400;
  color: #fff;
  border-radius: 18px;
}

.login-form h2 {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #3ab93a;
  font-family: "Poppins", sans-serif;
}

.login-form .main {
  position: relative;
  display: flex;
  margin: 30px 0;
}

.content {
  flex-basis: 45%;
  padding: 2em 3em;
  color: white; 
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -52.79%,
    rgba(0, 0, 0, 0.56) 198.36%
  );
  filter: drop-shadow(0px 27px 50px rgba(0, 0, 0, 0.07));

  box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}

.form-img {
  flex-basis: 55%;
  background-size: cover;

  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  align-items: center;
  display: grid;
}

.form-img img {
  max-width: 100%;
}

/* p {
  color: #666;
  font-size: 16px;
  line-height: 25px;
  opacity: 0.6;
  text-align: center;
} */

.btn,
button,
input {
  border-radius: 12px;
}

.btn:hover,
button:hover {
  transition: 0.5s ease;
}

a {
  text-decoration: none;
  color: #3ab93a;
  font-size: 12px;
}

.login-form form {
  margin: 30px 0;
}

.login-form input {
  outline: none;
  margin-bottom: 15px;
  font-stretch: 16px;
  color: #999;
  text-align: left;
  padding: 8px 12px;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid rgb(192, 192, 192);
  background: transparent;
  transition: 0.3s ease;
  font-size: 12px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.login-form input:focus {
  background: transparent;
  border: 1px solid #77dd77;
}

.login-form button {
  font-size: 12px;
  color: #1c6838;
  width: 100%;
  background: #77dd77;
  padding: 8px 15px;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.footer {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -52.79%,
    rgba(0, 0, 0, 0.56) 210.19%
  );
  filter: drop-shadow(0px 27px 50px rgba(0, 0, 0, 0.07));
  border-radius: 20px;
  padding: 14px;
  font-size: 14px;
  border-radius: 20px;
  text-align: center;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-top: 60px;
}

#remember {
  display: inline;
  color: white;
  font-size: 12px;
}

#remember input {
  width: 20px !important;
}

#forgot {
  float: right;
}

@media (max-width: 736px) {
  .login-form .main {
    flex-direction: column;
  }

  .login-form form {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .form-img {
    display: none;
  }

  /* .form-img img {
    border-radius: 0;
    border-bottom-left-radius: 1px !important;
    border-top-right-radius: 1px !important;
    order: 2;
  } */

  .content {
    border-radius: 18px;
    width: 400px;
  }
}

#forgottitle {
  color: white;
  font-style: norma !important;
}

#cancel {
  background: none;
  color: #77dd77;
}
#emailsendtitle {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #3ab93a;
  font-family: "Poppins", sans-serif;
  margin-top: 40%;
}
#emailsendtxt {
  color: white;
  font-style: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}


.field-validation-error {
    color: red; 
}

.input-validation-error {
    border-color: red !important;
}

.validation-summary-errors ul {
    list-style-type: none;
    color: red;
    padding-bottom: 12px; 
}


.light-mode body {
    font-family: "Raleway";
    background-image: url(../../img/bglight_login.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}   

.light-mode #usr{
    color:black!important;
}

.light-mode #pwd{
    color:black!important;
}


.light-mode .content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -52.79%, rgba(255, 255, 255, 0.56) 108.81%)!important;
    filter: drop-shadow(0px 27px 50px rgba(0, 0, 0, 0.07))!important;
    color: black; 
}

.light-mode #remember {
    color:black!important;
}

/*.light-mode #bgmajtas{
     visibility:hidden;
}*/



.light-mode .footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -52.79%, rgba(255, 255, 255, 0.56) 108.81%)!important;
    filter: drop-shadow(0px 27px 50px rgba(0, 0, 0, 0.07))!important;
    border-radius: 20px!important;
    color:black;
}

.light-mode #yforgot{
 color:black!important;
}

.light-mode #email {
    color: black !important;
    font-size:14px;
}

.light-mode #confirmemail {
    color: black !important;
    font-size: 14px;
}

.light-mode #mesazhifp {
    color: black!important;
    font-size:13px;
    
}

/*.light-mode #bgmajtas {
    display:none!important;
}
*/