/* Login Page Specific Styles */

/* Message styling */
.auth-messages {
  margin-bottom: 24px;
}

.message-alert {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.message-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.message-content {
  flex: 1;
}

.message-warning {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  color: #92400e;
}

.message-warning .message-icon {
  color: #f59e0b;
}

.message-error {
  background: #fee2e2;
  border: 1px solid #f87171;
  color: #991b1b;
}

.message-error .message-icon {
  color: #ef4444;
}

.message-info {
  background: rgba(147, 51, 234, 0.05);
  border: 1px solid var(--border-purple);
  color: var(--text-dark);
}

.message-info .message-icon {
  color: var(--primary-purple);
}

/* Forgot password link */
.forgot-password {
  text-align: right;
  margin-top: 12px;
  margin-bottom: 24px;
}

.forgot-password a {
  color: var(--primary-purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.forgot-password a:hover {
  color: var(--primary-purple-dark);
}

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

.auth-alt-action p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0 0 12px 0;
}

.auth-alt-action a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

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