.titulo {
  text-align: center;
  font-size: 1.2em;
  color: #2a5d84;
  margin-bottom: 4px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cofee {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  color: #6f4e37; /* tono café */
  font-weight: bold;
  font-size: 1.2em;
}


body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

body.recuperar-bg {
  background-color: #e6f2ff;
}

.login-container {
  width: 360px;
  margin: 40px auto; /* Reducido desde 80px */
  padding: 40px;
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2a5d84;
}

.login-container h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #2a5d84;
}

.login-form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: bold;
}

.login-form input {
  width: 93%;
  padding: 10px;
  border: 1px solid #bcdfff;
  border-radius: 4px;
  background-color: #f9fcff;
}

button[type="submit"],
button.estilo-boton {
  width: 100%;
  padding: 6px;
  margin-top: 15px;
  background-color: #2a5d84;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover,
button.estilo-boton:hover {
  background-color: #1c4765;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.actions {
  margin-top: 12px;
  text-align: right;
}

.actions a {
  font-size: 0.9em;
  color: #007bff;
  text-decoration: none;
}

.actions a:hover {
  text-decoration: underline;
}
.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.image-left,
.image-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100%;
}

.image-left img,
.image-right img {
  max-width: 100%;
  height: auto;
}

.campo-password {
  position: relative;
}

.campo-password input {
  width: 100%;
  padding: 10px;
  padding-right: 36px; /* espacio reservado para el ícono */
  border: 1px solid #bcdfff;
  border-radius: 4px;
  background-color: #f9fcff;
  box-sizing: border-box;
  font-size: 1em;
}

.icono-ojo {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #2a5d84;
  font-size: 1em;
  line-height: 1;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
