/* Password Reset Page Specific Styles */

/* Info box */
.info-box {
  background: linear-gradient(135deg, var(--bg-gradient-2) 0%, var(--bg-light-periwinkle) 100%);
  border: 1px solid var(--border-purple);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 32px;
  text-align: center;
}

.info-box-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-box-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-purple);
  stroke-width: 2;
}

.info-box p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Alternative action */
.auth-alt-action {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.auth-alt-action a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.auth-alt-action a:hover {
  color: var(--primary-purple-dark);
}

.auth-alt-action svg {
  width: 16px;
  height: 16px;
}

/* Form errors */
.form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: #dc2626;
  font-size: 14px;
  text-align: center;
}
