/* modal-login.css */
#loginModal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.custom-modal-dialog {
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 420px;
  animation: slideUp 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

.custom-modal-dialog h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
}

.custom-modal-dialog .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  color: #999;
}

.custom-modal-dialog .close-btn:hover {
  color: #333;
}

#googleButton {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

#result {
  text-align: center;
  color: red;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* BOTÓN CUENTA */
.cuenta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  border-radius: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.cuenta-btn:hover {
  background: #f8f8f8;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.cuenta-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.cuenta-btn div p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.cuenta-btn div h6 {
  margin: 0;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

