/* =========================================================
   APLEXCUB ADMIN - AUTHENTICATION LAYOUT (LOGIN)
   ========================================================= */

.auth-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, var(--color-bg) 100%);
  padding: 24px;
}

.auth-container {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transition: background-color var(--transition), border-color var(--transition);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--color-primary);
}

.auth-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--color-text-muted);
  font-size: 15px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* Auth Page Footer */
.auth-footer {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 13px;
}

