body {
    background-image: linear-gradient(to right, #1F1C18, #8E0E00, #1F1C18);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenedorLogin {
    background-color: #1B2631;
    width: 300px;
    height: 500px;
    border: 2px solid silver;
    border-radius: 10px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0px 10px 17px 5px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.inicioSesion {
    background-color: silver;
    padding: 10px;
    border: 2px solid silver;
    font-family: Oswald-Light;
    font-size: 15px;
    font-weight: normal;
    color: #191919;
}

.imagenLogin img {
    display: block;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 5px;
    margin-top: 10PX;
}

.contenedorFormulario {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.datosLogin input {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px 60px;
    margin: 10px;
    border: 2px solid silver;
    border-radius: 10px;
    font-family: Oswald-Light;
    font-size: 14px;
}

.datosLogin button {
    background-color: darkblue;
    color: silver;
    letter-spacing: 0.5px;
    border: 2px solid silver;
    border-radius: 6px;
    padding: 6px 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: Oswald-Light;
    transition: filter 1s;
}

.datosLogin button:hover {
    filter: saturate(200%);
}

.piePagina {
    background-color: silver;
    border: 2px solid silver;
    font-family: Oswald-Light;
    display: block;
}

.piePagina p {
    background-color: silver;
    color: #1C2833;
}

.piePagina a {
    display: block;
    border: 2px solid gray;
    border-radius: 5px;
    text-decoration: none;
    color: #1C2833;
    margin: 5px;
    transition: color 1s;
}

.piePagina a:hover {
    color: orange;
}

.iconoColmado7 {
    display: flex;
    margin: auto;
    margin-top: 20px;
    width: 55px;
    height: 55px;
    border-color: 2px solid silver;
    border-radius: 20px;
    overflow: hidden;
    transition: filter 1s ease-in-out;
}

.iconoColmado7:hover {
    filter: saturate(200%);
}


/* RESPONSIVE */

@media (max-width: 330px) {
    .contenedorLogin {
        width: 85vw;
    }
}