body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
}

.login-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  padding: 40px;
  max-width: 450px;
  width: 100%;
  margin: 20px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h1 {
  color: #667eea;
  font-size: 2rem;
  margin-bottom: 10px;
}

.login-header .rosario-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.login-header .rosario-icon .icon-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: bold;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  border-radius: 10px;
  padding: 12px;
  border: 2px solid #667eea;
  color: #667eea;
  background: white;
  font-weight: bold;
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #764ba2;
  color: #764ba2;
}

.alert {
  border-radius: 10px;
  margin-bottom: 20px;
}

.toggle-form {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.toggle-form a {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
}

.toggle-form a:hover {
  color: #764ba2;
}

.loading {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.spinner-border {
  color: #667eea;
}

.pending-activation {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.pending-activation h3 {
  color: #856404;
  margin-bottom: 15px;
}

.pending-activation p {
  color: #856404;
  margin-bottom: 10px;
}
