/* public/css/login.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: url('/vendor/adminlte/dist/img/gps.png') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.login-wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.login-wrapper img {
  width: 300px;
  margin-bottom: 25px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  font-size: 14px;
  color: #333;
}

.error-message {
  color: #cc0000;
  font-size: 12px;
  text-align: left;
  margin-bottom: 10px;
}

button {
  background-color: #00677F;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 10px auto 0;
  display: block;
}

button:hover {
  background-color: #004c5d;
}

.links {
  margin-top: 20px;
  font-size: 13px;
}

.links a {
  color: #72C7E7;
  text-decoration: none;
  display: block;
  margin-top: 6px;
}

.links a:hover {
  text-decoration: underline;
}

.field-wrapper {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.field-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 12px; /* espacio para el icono del ojo a la derecha */
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  margin-top: 5px;
}

.label-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #333;
  font-size: 16px;
  margin-bottom: 4px;
  margin-left: 2px;
}
.icon-right {
  position: absolute;
  right: 12px;
  top: 40px;
  color: #666;
  font-size: 16px;
  cursor: pointer;
}