/* Auth Container */
.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: var(--bg);
}

.auth-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  animation: slideUp 0.5s ease;
}

.auth-header {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.auth-header h1 {
  font-size: 24px;
  color: var(--text);
  margin: 0;
}

.auth-body {
  padding: 30px;
}

.auth-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  text-align: center;
  color: var(--text-light);
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(108, 92, 231, 0.2);
  border-radius: 8px;
  font-size: 16px;
  background: var(--card-bg);
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.form-text {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  color: var(--text);
}

.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: #5a4bd1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Alert */
.alert {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: white;
}

.alert-danger {
  background-color: var(--danger);
}

.alert-success {
  background-color: var(--success);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 500px) {
  .auth-card {
    border-radius: 0;
  }
}

/* Auth Button Container */
.auth-button-container {
  margin-top: 20px;
}

/* Verification Styles */
.verification-icon {
  text-align: center;
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.verification-icon.success {
  color: var(--success);
}

.verification-icon.error {
  color: var(--danger);
}

.verification-icon.warning {
  color: var(--warning);
}

.verification-message {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

.verification-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.auth-description {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
