body.login-page {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.72)),
    url('../fond.png') center / cover fixed;
}

body.login-page::before {
  display: none;
}

.auth-card {
  border-radius: 19px;
}

.auth-card .panel {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.auth-control {
  border-radius: 19px;
}

.field {
  width: 100%;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  color: #ffffff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.field:focus {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 3px rgba(212, 175, 55, 0.12);
}

.field::placeholder {
  color: rgba(217, 217, 217, 0.45);
}

.field-icon {
  padding-left: 2.5rem;
}

.field-with-icon {
  padding-left: 2.5rem;
}

.field-password-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.field-password-wrap > .field {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.field-password {
  padding-right: 2.75rem;
}

.field-password-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  z-index: 2;
  display: grid;
  height: 2rem;
  width: 2rem;
  margin-right: 0.625rem;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(217, 217, 217, 0.5);
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}

.field-password-toggle .icon-eye-off {
  display: none;
}

.field-password-toggle.is-visible .icon-eye {
  display: none;
}

.field-password-toggle.is-visible .icon-eye-off {
  display: block;
}

.field-password-toggle:hover,
.field-password-toggle:focus-visible {
  color: rgba(212, 175, 55, 0.95);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.profile-option input:checked + span {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.07));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
