/* Estilos generales */
#inicio_sesion {
    font-family: "Poppins", sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    min-height: 70vh;
    margin: 10;
    font-size: 16px;
  }

  #container-inicio-sesion {
    display: flex;
    justify-content: center; 
    width: 100%;
  }

  #content2 {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    text-align: center;
    width: 95%;
    align-items: center;
    border:1px solid #8000FF;
    background-color: white;
    align-items: center;

}



  
  /* Estilos para el contenedor del formulario */
  form {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #8000FF;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%; 
    max-width: 450px;
    height: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  /* Estilos para los campos de entrada y etiquetas */
  label {
    display: block;
    margin-top: 15px;
    margin-bottom: 6px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
  }
  
  /* Estilos para el botón de envío */
  input[type="submit"] {
    background-color: #8000FF;
    color: #fff;
    border: 2px solid transparent;
    margin-top: 30px;
    padding: 8px 38px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  input[type="submit"]:hover {
    background-color: white;
    border: 2px solid #8000FF;
    color: #8000FF;
  }
  
  /* Cambiar el color del texto en los campos al hacer foco */
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus {
    border-color: #007bff;
  }
  
  /* Cambiar el estilo del cursor al pasar sobre los campos */
  input[type="text"]:hover,
  input[type="email"]:hover,
  input[type="password"]:hover {
    border-color: #999;
  }
  
  /* Alinear el botón al centro */
  div:last-child {
    text-align: center;
  }

#olvide-contrasena{
    font-size: 10px;
    padding-top: 10px;
  }
  
#message-inicio-sesion{
    color: red;
    padding: 10px;

}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#dialog {
  background: #fff;
  padding: 40px;
  padding-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  width: 340px;
  height: 120px;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 28px;
}



@media (max-width: 768px) {
  form {
      width: 90%;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 40px;
      margin-top: 20px;
      margin-bottom: 20px;
  }

  #content2 {
      width: 100%;
      padding: 0 10px;
  }
}

@media (max-width: 575px) {
  form {
      width: 100%;
      padding-left: 10px;
      padding-right: 10px;
      padding-bottom: 20px;
      margin-top: 20px;
      margin-bottom: 20px;
  }

  input[type="submit"] {
      padding: 8px 20px;
  }

  #olvide-contrasena {
      font-size: 12px;
  }
}