/* +++++++++++++++++++++++++++++++ *\
            CONTAINER
\* +++++++++++++++++++++++++++++++ */
.app_container {
    width: 100%;
    min-height: calc(100vh - 270px);

    padding: 1rem;

    background: linear-gradient(to right, transparent, var(--bg_container)), url('../images/background-body.webp') left top no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.app_container > div {
    max-width: var(--max_width);
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 640px) {
    .app_container {
        min-height: calc(100vh - 240px);
        display: flex;
        flex-direction: column;
    }
    .app_container > div {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .app_container {
        min-height: calc(100vh - 160px);
    }
}

h1 {
    color: var(--color_secondary);
    font-weight: 700;
    width: 100%;
    padding-bottom: 1rem;

    text-align: center;
    font-size: 48px;
    line-height: 1;
}
h1 > span {
    color: var(--color_black);
    display: block;
    font-size: 24px;
}
.row-container h3 {
    width: 100%;
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .row-container {
        display: flex;
        align-items: self-start;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .row-container h3 {
        width: 100%;
        margin-bottom: -0.75rem;
    }
    .row-container > .field {
        width: calc(50% - 0.375rem);
    }
}
@media (min-width: 768px) {
    .row-container > .field {
        width: 100%;
    }
}
@media (min-width: 1280px) {
    .row-container > .field {
        width: calc(50% - 0.375rem);
    }
}

.form-wizard {
    flex: 1;

    padding: 1.5rem;
    width: 100%;
    height: 100%;
    
    border-radius: 4px;

    max-width: var(--form_width);
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;

    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
}


.pill {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    background-color: var(--color_secondary);
    padding: 12px;
    transform: rotate(-12deg);
    position: relative;
    z-index: 1;

    margin: 1rem auto;
}

.pill:before, .pill:after {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color_secondary);
    border-radius: 4px;
    z-index: 1;
}

.pill:before {
    transform: rotate(30deg);
}
.pill:after {
    transform: rotate(60deg);
}

.pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .pill {
        position: absolute;
        left: 1.5rem;
        top: 1rem;
    }
}