body > main {
    position: relative;
    min-height: 100vh;
    background: url(../../img/resources/background/auth.jpg) no-repeat center center;
    background-size: cover;
}
/* ? LG */
@media (min-width: 1024px) {
    body > main {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

body > main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    background-image: var(--gradient);
}

body > main > section {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}
/* ? LG */
@media (min-width: 1024px) {
    body > main > section {
        left: revert;
        width: calc((100% / 12) * 10);
        height: 25rem;
        background-color: var(--color-white);
        border-radius: .5rem;
        overflow: hidden;
        transform: revert;
    }
}
/* ? XL */
@media (min-width: 1200px) {
    body > main > section {
        width: calc((100% / 12) * 8);
    }
}

body > main > section figure img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

body > main > section form {
    padding: 0 1rem;
}

body > main > section form header img {
    width: 100%;
    height: 8rem;
    object-fit: contain;
}

body > main > section form main {
    width: 80%;
    margin: auto;
}
/* ? MD */
@media (min-width: 768px) {
    body > main > section form main {
        width: 50%;
        margin: auto;
    }
}
/* ? LG */
@media (min-width: 1024px) {
    body > main > section form main {
        width: 100%;
        margin: auto;
    }
}

body > main > section form [type=submit] {
    width: 100%;
    height: 40px;
}

.btn.see-password {
    width: auto;
}

aside {
    position: absolute;
    top: 0;
    right: 0;
}

aside .btn.btn-icon {
    width: 4.6rem;
    height: 4.6rem;
}

.input-group.email,
.input-group.password {
    grid-column: span 2 / span 2;
}