.login {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card);
    box-sizing: border-box; 
    background-color: #E8E8E8;
    font-family: 'Poppins', sans-serif;
    user-select: none;  
}

.contenedor-login{
    display: block;
    border: 1px solid var(--bordes);
    width: 250px;
    height: 270px;
    padding: 30px;
    background-color: var(--card);
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.contenedor-login h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    user-select: none;
    font-weight: 600;



}

.contenedor-login input {
    outline: none;
    border: none;
    width: 100%;
}

.contenedor-login i {
    user-select: none;
    color: #9e9e9e;
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; 
    width: 100%;
    border: 1px solid var(--bordes);
    height: 35px;
    padding: 8px;
    margin: 10px 0px;
    border-radius: 5px;
    gap: 7px;
}

.contenedor-login button {
    border: none;
    height: 40px;
    border-radius: 5px;
    background-color: var(--azul);
    width: 100%;
    margin: 20px 0px;
    color: var(--card);
    font-size: 16px;
    cursor: pointer;
    user-select: none;

}

.contenedor-login p {
    display: flex;
    margin: 0px;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    user-select: none;

}

.contenedor-login button:hover {
    background-color: var(--hover-azul);

}

#ventanaOpciones {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Se oculta por defecto */
}

.ventana-content {
    text-align: center;
}

#usuario-icono {
    cursor: pointer;
}
