﻿

.pantalla {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.lado-izquierdo {
    width: 60%;
    overflow: hidden;
}


.lado-izquierdo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.lado-derecho {
    width: 40%;
    background-color: #04391f;
    display: flex;
    justify-content: center;
    align-items: center;
}

.InicioSesionContainer {

    padding: 40px;
    border-radius: 20px;
    width: 60%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: rgb(128, 128, 128,0.8); 
    backdrop-filter: blur(5px);
}
#btnIniciarSesion {
    background-color: #5c5c5c;
    color: white;
    border: none;
}

#btnIniciarSesion:hover {
    background-color: #4a4a4a;
}

.TextoGest {
    color: #e5e7eb
}