body{
    background-color: #f8f8f8;
    background-image: url('../../images/fondopag-100.jpg');
    background-size: cover;
}
.container-h {
    display: flex;
    padding: 10px;
    height: 60px;
    position: fixed;
    top: 0;
}
main {
    margin-top: 60px;
    min-height: calc(100vh - 60px);
}
.profiles {
    margin-top: 50px;
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.profiles img {
    max-width: 690px;
}
.login {
    position: relative;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login img {
    max-width: 550px;
}
.container-form {
    position: absolute;
    bottom: 10px;
    color: black;
    /* background-color: #f8f8f8; */
    width: 300px;
}
.container-form form {
    padding: 10px;
    border-radius: 5px;
    /* background-color: white; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}
.container-form button, 
.container-form input[type="submit"] {
    border: 1px solid rgb(28, 76, 150);
    border-radius: 5px;
    height: 30px;
    background-color: white;
    color: rgb(4, 80, 194);
}
@media (max-width: 720px) {
    .profiles img {
        width: 580px;
    }
    .login img {
        width: 500px;
    }
}
@media (max-width: 580px) {
    .profiles img {
        width: 500px;
    }
    .login img {
        width: 500px;
    }
}
@media (max-width: 480px) {
    .profiles img {
        width: 400px;
    }
    .login img {
        width: 400px;
    }
}
@media (max-width: 380px) {
    .profiles img {
        width: 350px;
    }
    .login img {
        width: 350px;
    }
}