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: 30%;
  margin: 0 auto;

  border-radius: 80px;

  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  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 select {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 1rem;

  border-radius: 50px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}



.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;
}

/* 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: "Registrarse";
  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;
}

select {
  font-size: 1rem;

}
/* Agrega reglas CSS para hacerlo responsive */
.gradiente {
  min-height: 100vh;
}

.login-box {
  width: 80%;
  max-width: 400px;
}

input,
select,
button {
  width: 100%;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .login-box {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .login-box {
    padding: 20px;
  }

  input,
  select,
  button {
    font-size: 0.9rem;
  }
}
