/* =========================================================
   AUTH / LOGIN PAGE STYLES
   ========================================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f1f5;
  padding: 30px 15px;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(20, 25, 50, 0.08);
  padding: 45px 45px 40px;
  position: relative;
  overflow: hidden;
}

.auth-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 160px;
  pointer-events: none;
  z-index: 0;
}

.auth-card-inner {
  position: relative;
  z-index: 1;
}

.auth-logo-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ub-text-dark);
}

.auth-subtitle {
  text-align: center;
  color: var(--ub-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 35px;
}

.auth-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.auth-link {
  color: var(--ub-primary);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-link:hover {
  color: var(--ub-primary-dark);
}

.auth-footer-text {
  text-align: center;
  margin-top: 26px;
  font-size: 14px;
  color: var(--ub-text-muted);
}

.auth-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fdecea;
  color: #d23030;
  border: 1px solid #f7c9c4;
  padding: 12px 16px;
  border-radius: var(--ub-radius-sm);
  font-size: 13.5px;
  margin-bottom: 22px;
}

@media (max-width: 540px) {
  .auth-card {
    padding: 35px 24px 30px;
  }
}
