/* =============================================================================
   TrendContratos — auth.css · Estilos de las vistas de autenticación
   ============================================================================= */

.clm-auth-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4A6CF7 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.clm-auth-wrapper {
  width: 100%;
  max-width: 440px;
}

.clm-auth-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.clm-auth-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clm-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.clm-auth-subtitle {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.clm-auth-input {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #E5E7EB;
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.clm-auth-input:focus {
  border-color: #4A6CF7;
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.12);
  outline: none;
}

.clm-auth-link {
  color: #4A6CF7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.1s;
}

.clm-auth-link:hover {
  color: #3451D1;
}

.clm-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #9CA3AF;
  font-size: 12px;
}

.clm-auth-divider::before,
.clm-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}

.clm-btn-google {
  background: #fff;
  color: #374151;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s;
  text-decoration: none;
}

.clm-btn-google:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.clm-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  line-height: 1;
  transition: color 0.1s;
}

.clm-password-toggle:hover {
  color: #4A6CF7;
}