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

.login-container {
  background-color: #0047AB;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 350px;
  text-align: center;
}

.logo {
  margin-bottom: 25px;
}

h1 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
}

/* Campos de texto y contraseña con estilos idénticos */
input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 12px 40px 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease;
  font-family: 'Nanito Sans', sans-serif;
  letter-spacing: 0;
  height: 44px;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #FFD700;
}

/* Contenedor especial para el campo de contraseña */
.password-container {
  position: relative;
}

.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.password-toggle:hover {
  color: #FFD700;
}

button {
  background-color: #028484;
  color: #FFFFFF;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

button:hover {
  background-color: #FFD700;
  color: #0047AB;
}

.signup-link {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.signup-link a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.signup-link a:hover {
  color: #48D1CC;
  text-decoration: underline;
}