body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f6fa;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.login-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-sizing: border-box;
}

.login-form h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #34495e;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdde1;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}

button[type="submit"] {
  background-color: #25435b;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  width: 100%;
  box-sizing: border-box;
}

button[type="submit"]:hover {
  background-color: #74b9ff;
}

.login-links {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.login-links a {
  color: #0984e3;
  text-decoration: none;
  margin: 0 8px;
}

.login-links a:hover {
  text-decoration: underline;
}

/* 📱 Responsive ajustes para móviles */
@media (max-width: 480px) {
  .login-form {
    padding: 20px;
  }

  .login-form h2 {
    font-size: 20px;
  }

  button[type="submit"] {
    font-size: 14px;
  }

  .login-links {
    font-size: 13px;
  }
}
