.login-container {
  width: 440px;
  margin: 100px auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-align: center;
  transition: opacity 0.5s ease;
}

.login-container .logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
  object-fit: cover;
  background-color: #ffffff11;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.login-container input[type="text"], .login-container input[type="password"] {
  width: 100%;
  padding: 12px 40px;
  margin: 10px 0;
  border-radius: 30px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.login-container input::placeholder {
  color: #ccd0e0;
}

.login-container .icon {
  position: absolute;
  margin-left: 15px;
  margin-top: 22px;
  color: white;
}

.login-container .options {
  margin-top: 10px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.login-container button {
  margin-top: 20px;
  background: #ff6f00;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-container button:hover {
  background: #e65c00;
}

/* SPINNER */

.spinner {
  display: none;
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255,255,255,0.2);
  border-top: 6px solid #ff6f00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 100px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

input:-webkit-autofill {
  background: rgba(255,255,255,0.1) !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.1) inset !important;
  -webkit-text-fill-color: white !important;
  color: white !important;
  border-radius: 30px;
  transition: background-color 5000s ease-in-out 0s;
}

/* ESTILOS PARA EL BOTÓN DE GOOGLE */

.google-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: bold;
  margin: 15px auto 0 auto;
  width: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
}

.google-btn i {
  font-size: 18px;
  color: #4285F4;
  background: white;
  border-radius: 50%;
  padding: 3px;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.separator::before, .separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.separator::before {
  margin-right: 15px;
}

.separator::after {
  margin-left: 15px;
}

.error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 10px;
  display: none;
  text-align: center;
  background: rgba(255, 107, 107, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

