/* Auth page background */
.auth-page {
  background: #f4f6f9;
  padding: 24px;
}

/* Card */
.auth-card {
  max-width: 480px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 35, 52, 0.08);
  background: #ffffff;
}

/* Header section */
.auth-header {
  padding: 32px 32px 8px;
}

/* Lock icon in a circle */
.auth-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(25, 103, 210, 0.08); /* soft primary */
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-icon-circle i {
  font-size: 32px;
  color: #1967d2; /* primary tone */
}

/* Title & subtitle */
.auth-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1f2933;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Body */
.auth-body {
  padding: 24px 32px 28px;
}

/* Inputs */
.auth-input {
  border-radius: 10px;
  border-color: #e5e7eb;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
  border-color: #1967d2;
  box-shadow: 0 0 0 0.15rem rgba(25, 103, 210, 0.15);
}

/* Labels */
.auth-body .form-label {
  font-weight: 500;
  color: #374151;
}

/* Remember me checkbox area */
.auth-body .form-check-label {
  font-size: 0.9rem;
  color: #4b5563;
}

.auth-btn {
    background-color: #1967d2 !important;
    border-color: #1967d2 !important;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(25, 103, 210, 0.25);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}

.auth-btn:hover {
    background-color: #165bbf !important; /* slightly darker hover */
    border-color: #165bbf !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(25, 103, 210, 0.3);
}

.auth-btn:active {
    background-color: #134fa8 !important;
    border-color: #134fa8 !important;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(25, 103, 210, 0.2);
}

/* Footer */
.auth-footer {
  border-top: none;
  padding: 16px 24px 18px;
  background: #f9fafb;
  color: #9ca3af;
}

/* Remove Bootstrap valid/invalid check icons */
.auth-input.is-valid,
.auth-input.is-invalid,
.form-control.is-valid,
.form-control.is-invalid {
    background-image: none !important;
    padding-right: 0.75rem !important; /* remove space for the icon */
    background-repeat: unset !important;
    background-position: unset !important;
}

/* Also remove the green/red border if you want */
.auth-input.is-valid,
.form-control.is-valid {
    border-color: #e5e7eb !important; /* normal border */
    box-shadow: none !important;
}

.auth-input.is-invalid,
.form-control.is-invalid {
    border-color: #e5e7eb !important; /* normal border */
    box-shadow: none !important;
}
