/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.login-container {
}

.nav-header .saunahost-img img {
  max-width: 100px;
  width: 100%;
}

/* .login-content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding: 40px 60px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
  align-content: center;
} */

.login-content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding: 0 60px 40px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto;
  align-content: center;
}

.login-intro {
  min-height: 500px;
  width: 100%;
  max-width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.login-intro .img {
  padding: 20px;
  border-radius: 27px;
  margin-bottom: 24px;
}
.login-intro .img img {
  max-width: 450px;
  width: 100%;
}
.login-intro h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}
.login-intro p {
  font-size: 16px;
  font-weight: 400;
  color: #181818;
}
.login-form {
  max-width: 450px;
  width: 100%;
}
.login-form h2 {
  font-size: 36px;
  font-weight: 700;
}

.login-form .form label {
  color: #777771;
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.login-form .form input[type="text"],
.login-form .form input[type="password"] {
  border: none;
  outline: none;
  margin: 10px 0;
  padding: 20px 28px !important;
  border-radius: 15px;
  width: 100%;
  font-size: 16px;
}
.pass-wrapper {
  margin-top: 10px;
}

#error-msg-usr p,
#error-msg-pass p {
  margin-top: -10px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}

/*#message p {*/
/*  margin-bottom: 10px;*/
/*}*/

#saunaHostLogin {
  background-color: #000000;
  font-weight: 500;
  font-size: 14px;
  padding: 15px 30px !important;
  color: #fff;
  text-transform: uppercase;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

.password-wrapper {
  position: relative;
}

#togglePassword {
  position: absolute;
  padding: 0;
  margin: 0;
  background: none;
  top: 24px;
  right: 28px;
  cursor: pointer;
  color: #777771;
  font-size: 20px;
  font-weight: 500;
  box-shadow: none;
  border: none;
  height: 16px;
  width: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 767px) {
  .login-content {
    flex-direction: column;
    padding: 20px;
  }

  .login-form h2 {
    font-size: 36px;
    text-align: center;
  }
  .login-intro {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .login-content {
    flex-direction: column;
    padding: 20px;
  }

  .login-form h2 {
    font-size: 24px;
    text-align: center;
  }
  .login-intro {
    display: none;
  }
}
.custom_form_loader_wrap {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom_login_form_btn_wrap {
  position: relative;
  margin-top: 20px;
}
.loader {
  width: 24px;
  height: 24px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.forget-wrapper {
  text-align: right;
}
a.lost-password {
  font-weight: 500;
  margin-left: 12px;
  text-decoration: none !important;
}

.email-alert {
  display: flex;
  align-items: center;
  background: #4CB051;
  /*border-bottom: 15px;*/
  border-radius: 10px;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.email-alert  span{

  display: flex;
}

.email-alert span svg{
  width: 20px;
  /*height: 20px;*/
  color: #fff;
  margin: 0 !important;
}

.email-alert p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.email-alert {
  display: flex;
  align-items: center;
  background: #4CB051;
  /*border-bottom: 15px;*/
  border-radius: 10px;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.email-alert  span{

  display: flex;
}

.email-alert span svg{
  width: 24px;
  /*height: 20px;*/
  color: #fff;
  margin: 0 !important;
}

.email-alert p {
  margin-bottom: 0;
  margin-top: 0 !important;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.error-alert {
  display: flex;
  align-items: center;
  background: #FF4C4C; /* Changed background color for error */
  border-radius: 10px;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.error-alert span {
  display: flex;
}

.error-alert span svg {
  width: 24px;
  color: #fff;
  margin: 0 !important;
}

.error-alert p {
  margin-bottom: 0;
  margin-top: 0 !important;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
