/* ==========================================================================
   PHYSIOSAAS - AUTHENTICATION & LOGIN SCREEN SPECIALIZED STYLES
   ========================================================================= */

.login-body {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  overflow: hidden;
  padding: 20px;
}

.login-wrapper-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg-surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: login-card-intro 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes login-card-intro {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.login-brand-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-logo-large {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-success));
  color: hsl(222, 47%, 7%);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
  margin-bottom: 8px;
}

.brand-logo-large svg {
  width: 30px;
  height: 30px;
}

.login-brand-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.login-brand-header h2 span {
  color: var(--color-brand);
}

.login-brand-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Painéis de Formulários */
.login-box-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.login-box-panel.active {
  display: flex;
  animation: panel-fade-in 0.3s ease forwards;
}

@keyframes panel-fade-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.btn-submit-auth {
  width: 100%;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.auth-footer-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.auth-footer-switch a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.auth-footer-switch a:hover {
  text-decoration: underline;
  color: var(--color-brand-hover);
}

.forgot-link {
  font-size: 0.75rem;
  color: var(--color-brand);
  text-decoration: none;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Box de Alertas e Suspensão Premium */
.login-alert-box {
  background-color: var(--color-danger-bg);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: var(--border-radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.85rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  animation: panel-fade-in 0.3s ease forwards;
  width: 100%;
}

.login-alert-box h4 {
  font-family: var(--font-heading);
  color: var(--color-danger);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-alert-box p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.btn-alert-support {
  background-color: var(--color-danger);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-smooth);
  width: fit-content;
  margin-top: 4px;
}

.btn-alert-support:hover {
  background-color: hsl(350, 89%, 50%);
  transform: translateY(-1px);
}

