/* === ESTILOS DEL LOGIN === */
.secciones {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  /* background: linear-gradient(135deg, #6b0f1a, #b91372); */
  background-color: #E5E7EB;
  font-family: "Poppins", sans-serif;
}

.login-container {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 380px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.7s ease-in-out;
}

.login-container h2 {
  color: #000000;
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
  outline: none;
  transition: 0.3s;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #90A1B9;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  left: 12px;
  font-size: 0.8rem;
  color: #90A1B9;
  background: #fff;
  padding: 0 4px;
}

.btn {
  width: 100%;
  padding: 0.8rem;
  background: #2B7FFF;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #155DFC;
}

.social-login {
  margin: 1.5rem 0;
}

.social-login p {
  color: #666;
  margin-bottom: 0.8rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.google-btn, .facebook-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.google-btn {
  background: #db4437;
  color: #fff;
}

.facebook-btn {
  background: #3b5998;
  color: #fff;
}

.google-btn:hover {
  background: #c23321;
}

.facebook-btn:hover {
  background: #2d4373;
}

.options {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.options a {
  color: #45556C;
  text-decoration: none;
}

.options a:hover {
  color: #314158;
  text-decoration: underline;
}

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

/* Responsivo */
@media (max-width: 420px) {
  .login-container {
    padding: 1.5rem;
  }
}