.page-wrapper__recuperar {
    height: calc(100vh - 100px);
    font-family: 'Poppins', sans-serif;

    .section {
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .container__wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;

        .container__wrapper-outside {
            width: 30%;
            background-color: #FFFFFFF0;
            box-shadow: 0 0 40px 0 #0000005E;
            border-radius: 8px;
        }

        .container__wrapper-inside {
            padding: 40px 64px 56px 64px;

            h1 {
                font-size: 22px;
                font-weight: 600;
                line-height: 26px;
            }

            h3 {
                color: var(--color-primary-06);
                font-size: 18px;
                line-height: 22px;
                font-weight: 400;
            }

            .container__input {
                margin-top: 40px;

                label {
                    color: var(--color-primary-10);
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 16px;
                }

                input {
                    border: 1px solid var(--color-primary-05);
                    border-radius: 4px;
                    font-size: 16px;
                    font-style: italic;
                    line-height: 18px;
                    padding: 10px 8px;
                }

                button.btn-filling {
                    width: 100%;
                    text-align: center;
                    padding: 8px 0;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 16px;
                    text-transform: uppercase;
                    margin: 24px 0 40px;
                    border-radius: 4px;
                    background-color: var(--color-secondary-07);
                    color: var(--color-white);
                }
            }

            .container__link {
                position: relative;

                &::before {
                    content: "";
                    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6663 6.00016H1.33301M1.33301 6.00016L5.99967 10.6668M1.33301 6.00016L5.99967 1.3335' stroke='%23B3161D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
                    display: inline-block;
                    width: 12px;
                    height: 12px;
                }

                a {
                    color: var(--color-secondary-07);
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 20px;
                    padding-left: 6px;
                    text-decoration: none;
                }
            }

            .alert.alert-success {
                margin-top: 1em;
                text-align: center;
            }
        }
    }

}

@media (max-width: 1200px) {
    .page-wrapper__recuperar {
        .container__wrapper {
            .container__wrapper-outside {
                width: 50%;
            }
        }
    }
}

@media (max-width: 1024px) {
    .page-wrapper__recuperar {
        .container__wrapper {
            .container__wrapper-outside {
                width: 90%;
            }
        }
    }
}

@media (max-width: 768px) {
    .page-wrapper__recuperar {
        .container__wrapper {
            .container__wrapper-inside {
                padding: 40px 40px 56px;
            }
        }
    }
}