.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  font-family: inherit;
}

.auth-container {
  max-width: 500px;
  width: 100%;
  padding: 3rem 2.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.auth-container h2 {
  color: #100e35; /* Azul oscuro */
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.auth-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #100e35;
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: #d84b74;
  box-shadow: 0 0 0 3px rgba(216, 75, 116, 0.1);
}

.btn-auth {
  width: 100%;
  background: linear-gradient(135deg, #100e35 0%, #d84b74 100%);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-auth:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Toast Alert Coherente */
.toast-alert {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #100e35;
  border-left: 5px solid #d84b74;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.toast-alert.show {
  opacity: 1;
  transform: translateX(0);
}