@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,600;0,800;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #ddd;
}

.contenedor{
     display: flex;
    flex-direction: column;
    min-height: 97.5vh;
}

.footer{
    padding: 5px 0;
    margin-top: auto;
}

.login{
    background-color: white;
    height: 97.5vh;
}

.images{
    background-color: white;
    height: 97.5vh;
}

@media only screen and (max-width: 768px) {
    .images{
        display: none;
    }


}