html {
  font-size: 14px;
}

.auth-body {
  background: linear-gradient(135deg, #FFB74D 0%, #FB8C00 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 1rem;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.auth-card h2 {
  color: #2b2635;
  font-weight: 700;
}

.auth-card .btn-primary {
  background: linear-gradient(135deg, #FFB74D 0%, #FB8C00 100%);
  border: none;
  font-weight: 600;
  padding: 0.65rem;
  border-radius: 10px;
}

.auth-card .btn-primary:hover {
  background: linear-gradient(135deg, #FFA726 0%, #F57C00 100%);
}

.auth-card .form-control:focus {
  border-color: #FB8C00;
  box-shadow: 0 0 0 0.2rem rgba(251, 140, 0, 0.2);
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}