body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login-box {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 30px;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.login-header {
  text-align: center;
  margin-bottom: 20px;
}

.login-header h2 {
  color: #fff;
  font-weight: 500;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #2a2a2a;
  color: white;
}

.login-form input::placeholder {
  color: #bbb;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background-color: #ffcc00;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.login-form button:hover {
  background-color: #e6b800;
}

.divider {
  text-align: center;
  margin: 15px 0;
  color: #666;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: black;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  width: 100%;
}

.btn-google:hover {
  background: #ddd;
}

.login-footer {
  text-align: center;
  margin-top: 15px;
}

.login-footer a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 14px;
}

.login-footer a:hover {
  color:#FFD435;
  text-decoration: none;
}

#googleSignInDiv {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* SWITCH moderno */
.switch-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: start;
  margin: 10px 0;
}

.switch-container input {
  display: none;
}

.switch-label {
  margin-left: 45px;
  font-size: 14px;
  color: #ccc;
  user-select: none;
}

.slider {
  position: absolute;
  left: 0;
  width: 40px;
  height: 20px;
  background-color: #555;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.switch-container input:checked + .slider {
  background-color: #ffcc00;
}

.switch-container input:checked + .slider::before {
  transform: translateX(20px);
}
