/* ====== LIGHT THEME + MATERIAL LOGIN ====== */

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(40rem 40rem at 10% 10%, rgba(69,148,217,0.12), transparent 60%),
    radial-gradient(50rem 50rem at 90% 20%, rgba(69,148,217,0.1), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.12),
      0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.auth-card__bar {
  height: 6px;
  background: linear-gradient(90deg, #4594D9, #66b3ff);
}

.auth-card__header {
  padding: 30px 24px 10px 24px;
  text-align: center;
}

.auth-logo {
  height: 64px;
  width: auto;
  margin-bottom: 12px;
}

.auth-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1e293b;
  margin: 0;
}
.auth-subtitle {
  margin: 2px 0 0 0;
  color: #64748b;
  font-size: 0.95rem;
}

.auth-card__body {
  padding: 18px 26px 26px 26px;
}

/* Floating labels */
.form-floating > label {
  color: #64748b;
}
.form-control,
.form-control:focus {
  border-radius: 12px;
}

/* Inputs focus */
.form-control:focus {
  border-color: #4594D9;
  box-shadow: 0 0 0 .2rem rgba(69, 148, 217, 0.18);
}

/* Primary button */
.btn-primary {
  background-color: #4594D9;
  border-color: #4594D9;
}
.btn-primary:hover {
  background-color: #3b86c7;
  border-color: #3b86c7;
}

/* Ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

.auth-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8ea0b3;
  font-size: 0.9rem;
  margin: 10px 0 14px;
}
.auth-separator::before,
.auth-separator::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #e2e8f0;
}

.tg-wrap {
  display: flex;
  justify-content: center;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px;
  background: #f8fafc;
}

.form-text {
  color: #94a3b8 !important;
}
