body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #ffffff, #f1f1f1);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.titulo {
  font-size: 1.2em;
  color: #555;
  margin: 0;
}

.subtitulo {
  font-size: 2.5em;
  font-weight: bold;
  color: #003366;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #00000033;
  margin: 5px 0 20px;
}


.logo {
  width: 100px;
  margin-bottom: 20px;
}

.input-field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.input-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.input-field input:focus {
  border-color: #333;
  outline: none;
}

.actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-login {
  background-color: #111;
  color: white;
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background-color: #333;
}

.btn-reset {
  background-color: #ffc107;
  padding: 12px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  border-radius: 25px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-reset:hover {
  background-color: #e0a800;
}

.footer {
  margin-top: 30px;
  background-color: #444;
  color: white;
  padding: 10px;
  border-radius: 20px;
  font-size: 0.9em;
}

.error-msg {
  background-color: #ffe5e5;
  color: #a00;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
