/* ============================================
   AUTH STYLES - QASO SYSTEM
   Estilos para login y registro
   ============================================ */

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #2E86AB;
}

.auth-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.auth-box h2 {
  color: #2E86AB;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 1.8rem;
}

.auth-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.auth-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2E86AB;
}

.auth-form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.auth-form-group input:focus {
  outline: none;
  border-color: #5DADE2;
  box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.2);
}

.auth-btn-primary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #5DADE2;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auth-btn-primary:hover {
  background: #2E86AB;
}

.auth-link {
  display: block;
  margin-top: 15px;
  color: #2E86AB;
  cursor: pointer;
  font-size: 0.9rem;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-message {
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.auth-message.error {
  background: #f8d7da;
  color: #721c24;
}

.auth-message.success {
  background: #d4edda;
  color: #155724;
}

.auth-message.info {
  background: #d1ecf1;
  color: #0c5460;
}
