/*
 * Public auth skin that preserves the admin login visual style
 * without depending on assets/admin/css includes.
 */

.login {
  background: transparent;
}

.center {
  display: flex;
  justify-content: center;
}

.verticle_center {
  display: flex;
  align-items: center;
}

.full_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.full_height {
  min-height: 70vh;
}

.login_section {
  max-width: 640px;
  width: 100%;
  min-height: 540px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px -8px #000;
  background: var(--pluto-surface-color);
}

.logo_login {
  position: relative;
  padding: 50px 0;
  background: url("../../img/layout_img/login_image.jpg") center center / cover no-repeat;
}

.logo_login::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 40, 60, 0.8);
}

.logo_login > div {
  position: relative;
  z-index: 1;
}

.login_form {
  float: left;
  width: 100%;
  padding: 50px;
}

.login_form form {
  float: left;
  width: 100%;
}

.login_form form .field {
  float: left;
  width: 100%;
  margin: 0 0 20px;
  display: block;
}

.login_form form .field label.label_field {
  margin: 0 30px 0 0;
  width: 115px;
  height: 45px;
  line-height: 45px;
  text-align: right;
  font-size: 15px;
  font-weight: 300;
  color: var(--pluto-text-color);
}

.login_form form .field input {
  float: right;
  width: 395px;
  padding: 10px;
  line-height: normal;
  font-weight: 300;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid var(--pluto-border-color);
  border-radius: 0;
  transition: ease all 0.5s;
  background-color: var(--pluto-surface-color);
  color: var(--pluto-text-color);
}

.login_form form .field input:hover,
.login_form form .field input:focus {
  box-shadow: none;
}

.login_form .field label.form-check-label {
  margin-left: 20px;
  position: relative;
  top: 0;
  color: var(--pluto-text-color);
}

.login_form .field label.form-check-label .form-check-input {
  width: auto;
  margin-top: 0.25rem;
  margin-right: 0.45rem;
}

.hidden {
  visibility: hidden;
}

.margin_0 {
  margin: 0 !important;
}

.main_bt {
  min-width: 125px;
  height: auto;
  float: left;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: var(--pluto-text-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: var(--pluto-status-success);
  transition: ease all 0.5s;
}

button.main_bt {
  float: none;
  margin: 0;
}

.main_bt:hover,
.main_bt:focus {
  color: var(--pluto-text-color);
  background: #ff5722;
}

.auth-link {
  float: right;
  margin: 11px 0;
  color: #ff5722;
}

.auth-link:hover,
.auth-link:focus {
  color: color-mix(in srgb, #ff5722, #ffffff 15%);
}

.auth-error {
  margin-top: 14px;
  color: #ff5722;
  font-weight: 500;
}

#forgot-password-message:not(.auth-error) {
  color: var(--pluto-status-success);
}

.auth-switch {
  margin-top: 18px;
  color: var(--pluto-muted-text-color);
}

.auth-switch a {
  color: var(--pluto-status-success);
}

.auth-switch a:hover,
.auth-switch a:focus {
  color: #ff5722;
}

@media (max-width: 991px) {
  .full_height {
    min-height: auto;
  }

  .login_section {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .login_form form .field input {
    max-width: 395px;
    width: 100%;
  }

  .login_form form .field label.label_field {
    text-align: left;
  }

  .label_field.hidden {
    display: none;
  }

  .login_form form .field .form-check-label {
    float: left;
    width: 100%;
  }

  .auth-link {
    float: left;
    margin-top: 12px;
  }
}
