@import url(../assets/css/styles.min.css);

* *:after *:before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative; /* Asegúrate de que el body sea el contenedor relativo */
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--bs-white);
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/media/backgroundlogin2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; /* Para asegurarse de que esté detrás del contenido */
}


.login-container {
  /* background-color: rgba(255, 255, 255, 0.6); */
  /* backdrop-filter: blur(10px); */
  /* Cambia 0.8 al nivel de opacidad deseado */
  padding: 50px;
  border-radius: 20px;
  box-shadow: rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
  display: flex;
  justify-content: flex-end;
  /* Alinea al lado derecho */
  align-items: center;
  height: 70vh;
  margin: 0vb 10vh;
}

form {
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 80px;
}

img {
  margin-bottom: 0;
}

.texto {
  margin-bottom: 24px;
}

h1 {
  display: flex;
  font-size: 24px;
  margin: 0px 0px 16px 0px;
  justify-content: center;
}

p {
  margin: 0;
}

label {
  font-size: 16px;
  margin-bottom: 24px;
}

.input-box {
  display: flex;
  width: 250px;
  padding: 15px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
  /* border: 1px solid white; */
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.185);
  backdrop-filter: blur(2px);
  color: white;
}

.input-box span {
  margin-right: 10px;
}

input {
  outline: none;
  font-size: 16px;
  font-weight: 200;
  width: 100%;
  border: none;
  transition: border-color 1s ease;
  margin: 0px 0px;
  color: white;
  background-color: transparent;
}

input::placeholder {
  color: #f0f0f0; /* Cambia este color por el que prefieras */
  opacity: 1; /* Asegúrate de que el placeholder sea totalmente visible */
}

.ojo {
  display: flex;
  cursor: pointer;
}

#hide1 {
  display: none;
}

button {
  width: 100%;
  background-color: var(--bs-orange-principal);
  padding: 15px 30px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  color: var(--bs-white);
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--bs-orange-principal-hover);
  color: var(--color-white);
}

#modal {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Fondo semitransparente */
  z-index: 9999;
  /* Asegura que el modal aparezca encima de otros elementos */
}