#login-section {
    position: fixed;
    z-index: 2001;
    top: 0;
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px;
    border-radius: 5px;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background-color: rgba(0, 0, 0, 0);
  }
  .third-line {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  
  .third-line p {
    text-align: center !important;
    font-weight: bold !important;
    margin: 0 !important;
    vertical-align: middle !important;
  }
  
  .third-line a {
    font-weight: bold !important;
    color: var(--greenFull2) !important;
    transition: 0.1s !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
  
  .third-line a:hover {
    transition: 0.1s !important;
    color: var(--greenFull3) !important;
  }
  
  #close-modal-login {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #form-login {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 400px;
    position: relative;
    padding: 30px;
  }
  
  #form-login > h2 {
    font-family: var(--main);
    font-weight: bold;
    font-size: 35px;
    color: white;
    margin-bottom: 25px;
    filter: drop-shadow(2px 4px 6px black);
  }
  
  #label-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
  }
  
  #icon-login-password {
    cursor: pointer;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  
  #icon-login-password:hover {
    color: var(--green3);
  }
  
  .input-type {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .input-is {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.48);
    border-radius: 3px;
    padding: 0.5em;
    font-size: 1em;
    font-family: var(--second);
    font-weight: bold;
    color: white;
    text-align: left;
    border: 1px solid var(--borderInputs);
  }
  
  .input-is:focus {
    outline: none;
  }
  
  .input-is::placeholder {
    color: white;
    font-weight: 300;
  }
  
  .submit-button {
    position: relative;
    border: none;
    width: 100%;
    border-radius: 5px;
    background-color: white;
    color: black;
    transition: 0.2s;
    padding: 15px 30px;
    cursor: pointer;
    font-family: var(--main);
    font-weight: bold;
    text-align: center;
  }
  
  .submit-button:nth-child(1) {
    margin-top: 15px;
  }
  
  .submit-button > img {
    width: 35px;
    position: absolute;
    left: 5px;
    top: 5px;
  }
  .submit-button:hover {
    background-color: var(--greenFull2);
  }
  
  /* ESTILOS COMPARTIDOS CON REGISTER */
  #logo-auth-container {
    position: absolute;
    display: flex;
    gap: 10px;
    top: 10px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #logo-auth-container > img {
    width: 50px;
  }
  #logo-auth-container > h1 {
    font-family: var(--four);
    color: var(--greenFull3);
    font-size: 35px;
    font-weight: bolder;
  }
  
  @media (max-width: 668px) {
    #form-login {
      width: auto;
    }
  
    #close-modal-login {
      bottom: 10px;
    }
  }
  


/* Estilo para la sección de reset de contraseña */
#password-reset-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#password-reset-section form,
#password-reset-section #reset-confirmation {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background-color: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: white;
}

#password-reset-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

#password-reset-section p {
  margin-bottom: 20px;
  text-align: center;
  color: #ccc;
}

/* Estilo para reenvío de verificación */
#resend-verification-form,
#resend-confirmation {
  background-color: #2a2a2a;
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

/* Ajustes para botones y enlaces */
.text-success {
  color: #38b000 !important;
}

.small {
  font-size: 14px;
}