body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ecf0f1;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login-box {
  background-color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  color: #2c3e50;
  font-size: 2em;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 25px;
}

input[type="password"] {
  width: 90%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

button {
  width: 95%;
  padding: 12px;
  background-color: #2c3e50;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #1e2d3d;
}

.logo-login {
  width: 200px;
  margin-bottom: 10px;
}
