.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;     /* centro vertical */
  justify-content: center; /* centro horizontal */
  background: #f5f7fb;     /* opcional pero elegante */
}

.auth-wrapper {
  background: radial-gradient(
    circle at top,
    #eef2ff,
    #f5f7fb
  );
}


.auth-forgot {
  max-width: 420px;
  text-align: center;
}

.auth-forgot h2 {
  margin-bottom: 8px;
}

.auth-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #5b7cff;
  box-shadow: 0 0 0 2px rgba(91,124,255,.15);
}

.btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #5b7cff;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #4a6ae6;
}

.switch-text {
  margin-top: 16px;
  font-size: 13px;
}

.switch-link {
  color: #5b7cff;
  cursor: pointer;
  text-decoration: none;
}

.switch-link:hover {
  text-decoration: underline;
}


.form.hidden {
  display: none;
}

.switch-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}
