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

.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-header h2 {
  color: #100e35;
  font-weight: 800;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.auth-header p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Campos del Formulario */
.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-sizing: border-box;
}

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

/* Botón Principal */
.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;
  margin-top: 1rem;
}

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

/* Enlaces Devise */
.auth-links {
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.auth-links a {
  color: #d84b74;
  text-decoration: none;
  font-weight: 500;
}

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

/* --- Toast Alert --- */
.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: 600;
  box-shadow: 0 5px 15px 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);
}