:root {
  --primary-color: #4361ee;
  --primary-light: #e6f0ff;
  --success-color: #28a745;
  --error-color: #dc3545;
  --text-color: #2b2d42;
  --light-gray: #f8f9fa;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-container {
  display: flex;
  min-height: 100vh;
  background-color: var(--light-gray);
}

.auth-illustration {
  flex: 1;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-illustration img {
  max-width: 80%;
  height: auto;
}

.auth-form-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-title {
  color: var(--text-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: all 0.3s;
}

.auth-form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
  outline: none;
}

.auth-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.auth-btn:hover {
  background-color: #3a56e8;
  transform: translateY(-2px);
}

.auth-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 500;
}

.auth-message.success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.auth-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--error-color);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #6c757d;
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
}

.password-strength {
  margin-top: 0.5rem;
  height: 5px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.password-hint {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
  }

  .auth-illustration {
    padding: 1rem;
    display: none;
  }

  .auth-form-container {
    padding: 1.5rem;
  }
}
