.fr-auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 2rem;
  background: var(--black);
}

.fr-auth-card {
  width: 100%;
  max-width: 400px;
  background: rgba(244, 247, 242, 0.03);
  border: 1px solid rgba(244, 247, 242, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.fr-auth-brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
 
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 2rem;
}

.fr-auth-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.fr-auth-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(244, 247, 242, 0.6);
  margin-bottom: 1.75rem;
}


.fr-btn-block {
  width: 100%;
  padding: 0.65rem 1rem;
}

.fr-link, .fr-link-sm {
  color: var(--yellow);
  text-decoration: none;
  font-family: var(--font-data);
  font-weight: 700;
}

.fr-link-sm {
  font-size: 0.85rem;
}

.fr-link:hover, .fr-link-sm:hover {
  text-decoration: underline;
}

.fr-auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(244, 247, 242, 0.6);
}

.fr-alert-danger {
  background: rgba(229, 72, 77, 0.12);
  border: 1px solid rgba(229, 72, 77, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--white);
}

.fr-alert-success {
  background: rgba(46, 189, 107, 0.12);
  border: 1px solid rgba(46, 189, 107, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--white);
}