@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: Roboto, "Adobe Blank";
}

body {
    background-color: #f9f9f9;
    padding: 70px 0;
    height: 100dvh;
}

div.main {
    margin: 0 auto;
    width: 75%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #003da5;
    padding: 2em 3em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header .images {
    display: flex;
    align-items: center;
}

main {
    flex: 1;
}

footer {
    padding: 2em 3em;
    background: #003da5;
}

footer * {
    font-size: 0.8em;
    color: white;
}

.separador {
    display: inline-block;
    width: 20px;
}

h1 {
    text-align: center;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5em;
    font-weight: 400;
}

h1 b {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 550;
}

#loginForm {
    margin: 0 0 0 auto;
    padding: 2em 3em;
    display: flex;
    flex-direction: column; /* column si es con login */
    width: 100%;
    /* max-width: 500px; */
    gap: 1em;
    justify-content: center;
    align-items: center;
}

.loginGroup {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.inputGroup {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.info {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    margin-top: 1em;
}

.info p {
    font-size: calc(0.8em + 0.3vw);
    color: black;
}

#loginForm input[type="text"], #loginForm input[type="password"] {
    padding: 0.3em 0.4em;
    border-radius: 2px;
    border: 1px solid #fff;
    background-color: #3c3c3c;
}


#loginForm input[type="submit"] {
    /* flex: 1; */
    width: 100%;
    max-width: 500px;
    padding: 0.6em 0.4em;
    border-radius: 10px;
    border: none;
    background: linear-gradient(#003da5, #002463);
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    height: 80px;
}

#loginForm label {
    font-size: 0.8em;
}

#passReset {
    text-align: center;
    font-size: 0.8em;
    text-decoration: none;
    color: #75B4E1;
    font-weight: 600;
}

@media screen and (max-width: 980px) {
    body {
        padding: 0;
    }
    div.main {
        width: 100%;
    }
    .loginGroup {
        flex-direction: column;
    }
    
}

@media screen and (max-width: 800px) {
    header {
        flex-direction: column;
        gap: 1em;
        padding: 1em 2em;
    }

    header .images {
        width: 100%;
        max-width: max-content;
    }

    header .images img#logoDIGEFE {
        width: 20%;
    }

    header .images img#logoMINT {
        width: 80%;
    }

    h1 {
        font-size: 1.3em;
    }
}