* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #2B3340;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh; /* evita que el teclado mueva todo */
  color: white;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 25px;
}

.logo {
  display: block;
  margin: 0 auto 40px;
  width: 120px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 16px; /* 🔥 CLAVE para que no haga zoom */
}

.password-box {
  position: relative;
}

.eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
  font-size: 16px;
}

.link-right {
  display: block;
  text-align: right;
  font-size: 12px;
  margin-top: 6px;
  color: #cfd8dc;
  text-decoration: none;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: #ff7a00;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-top: 10px;
  cursor: pointer;
}

.btn-login:disabled {
  background-color: #d1d1d1; /* Color gris para indicar que está deshabilitado */
  cursor: not-allowed;
}

.unlock {
  display: block;
  text-align: center;
  margin: 20px 0;
  color: white;
  text-decoration: none;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #b0bec5;
}

.footer a {
  display: block;
  margin: 6px 0;
  color: #b0bec5;
  text-decoration: none;
}

.bottom-links {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
