html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.gradiente {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, #45b196, #000);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background-color: rgb(42, 42, 42);
  width: 90%; /* Cambiado el ancho a 90% para pantallas más pequeñas */
  max-width: 400px; /* Añadido un ancho máximo */
  margin: 0 auto;
  border-radius: 80px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto; /* Altura automática */
  font-size: 1.2rem;
}

.login-box h2 {
  margin-bottom: 20px;
  padding: 1rem;
  color: #ccc;
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 1.5rem;
  border-radius: 50px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background-color: #1d5e69;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ayuda {
  padding: 10px;
  margin-top: 20px; /* Reducido el margen superior para pantallas más pequeñas */
  font-size: 1rem;
  text-decoration: none;
  color: #787878;
  font-weight: 400;
}

.divAyuda {
  padding-top: 10px;
}

/* Estilos para el botón Subscribe */
button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* Agregando border-radius de 50% */
}

button {
  --primary-color: #111;
  --hovered-color: #45b196;
  position: relative;
  display: flex;
  font-weight: 600;
  font-size: 20px;
  gap: 0.5rem;
  align-items: center;
}

button p {
  margin: 0;
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
}

button::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--hovered-color);
  height: 2px;
  transition: 0.3s ease-out;
}

button p::before {
  position: absolute;
  content: "Login";
  width: 0%;
  inset: 0;
  color: var(--hovered-color);
  overflow: hidden;
  transition: 0.3s ease-out;
}

button:hover::after {
  width: 100%;
}

button:hover p::before {
  width: 100%;
}

button:hover svg {
  transform: translateX(4px);
  color: var(--hovered-color);
}

button svg {
  color: var(--primary-color);
  transition: 0.2s;
  position: relative;
  width: 15px;
  transition-delay: 0.2s;
}

.weather-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 30px;
  margin-top: 20px;
  text-align: center;
  color: white;
}