body {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    max-width: var(--max-width);
    gap: 40px;
}

main section#header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--color-primary);
    padding: 20px 0 0 0;
}

main section#header img {
    height: 100%;
    max-height: 200px;
    width: 400px;
    /* prettier-ignore */
    filter: opacity(1) brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(8%) hue-rotate(13deg) brightness(102%) contrast(101%);
}

main section#formulario {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

main section#formulario form#form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    height: 100%;
    padding: 20px;
    /* prettier-ignore */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

main section#formulario div.form-control div.adornment[data-position="end"] {
    cursor: pointer;
    user-select: none;
}

main section#formulario div.forgot {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media (max-width: 1024px) {
    main section#formulario {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    main {
        flex-direction: column;
        gap: 30px;
    }

    main section#header,
    main section#formulario {
        background: white;
        justify-content: center;
        height: auto;
    }

    main section#formulario {
        padding: 0 20px 20px 20px;
    }

    main section#header img {
        filter: none;
        width: 75%;
    }
}
