/************ Linea separadora y boton Google **************/

.separator {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.social-login {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.separator {
    text-align: center;
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #dee2e6, transparent);
}

.separator span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #6c757d;
    font-size: 13px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.social-login {
    margin-bottom: 2rem;
}

.google-button {
    width: 100%;
    height: 52px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.google-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.google-button:hover::before {
    left: 100%;
}

.google-button:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-color: #cbd5e0;
    color: #374151;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.google-button img {
    flex-shrink: 0;
    z-index: 1;
}

.google-button span {
    z-index: 1;
}

/* AVATAR / LOGO CIRCULAR */
.logo-wrapper {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #151827;
  /* CAMBIADO: Borde al nuevo azul (#0d6efd) */
  border: 3px solid #0d6efd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}