.bg-page {
    background: #fbfcf7;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: .9fr 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
    width: 100vw;
}

.grid-image {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: .1fr 1fr;
    grid-template-columns: 1fr 1fr 320px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgb(255 255 255 / 65%) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(255 255 255 / 100%) 100%),
    url("../img/CENPROT-TO-intro-2.png");
    background-size: cover;
}

.grid-image-cadastro {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: .1fr 1fr;
    grid-template-columns: 1fr 1fr 320px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgb(255 255 255 / 65%) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(255 255 255 / 100%) 100%),
    url("../img/cenprot-to-recover-pass.png");
    background-size: cover;
}

.info-cenprot {
    grid-column: 3;
    grid-row: 2;
    margin-right: 20px;
    text-align: right;
}

.image-container {
    grid-column: 3;
}

.grid-login {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-info {
    float: right;
    margin-right: 20px;
    margin-top: 20px;
}

.info-text {
    font-weight: bold;
    font-size: 22px;
    text-align: right;
    max-width: 320px;
}

.box-login {
    width: 550px;
    padding: 15px;
    margin: 0 auto;
    border: solid 1px #dfdfdf;
    border-radius: 8px;
    box-shadow: 0px 2px 22px 2px #00000022;
}

.font-weight-bold {
    font-weight: bold !important;
}

.title-cpt {
    color: #597fb9;
}

.mt-8 {
    margin-top: 8px;
}

.forgot-pass {
    text-decoration: none;
    color: #0d6aad;
    font-weight: bold;
    font-size: medium;
}

.blue-font {
    color: #597eb5;
}

span.feedbackPanelERROR {
    padding: 8px;
    border: solid 1px #d71717;
    background: #d94a4a;
    color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 2px #00000045;
}

li.feedbackPanelERROR {
    margin-bottom: 14px;
}

li.feedbackPanelSUCCESS {
    padding: 5px;
    background: lightgreen;
    border-radius: 8px;
    border: 1px solid limegreen;
    box-shadow: 0px 2px 2px #00000045;
    margin-top: 10px;
}

@media screen and (max-width: 1024px) {
    .grid-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 540px 1fr;
    }

    .grid-login {
        grid-column: 1;
        grid-row: 1;
        transform: translateY(-20%);
    }

    .box-login {
        width: 450px;
        padding: 15px;
        margin: 0 auto;
        transform: translateY(25%);
        margin-bottom: 15px;
        border: solid 1px #dfdfdf;
        border-radius: 8px;
        box-shadow: 0px 2px 22px 2px #00000022;
    }

    .img-info {
        height: auto;
        width: 100%;
        object-fit: scale-down;
        padding-bottom: 323px;
    }

    .grid-image {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-rows: .1fr 1fr;
        grid-template-columns: 1fr 1fr 320px;
    }

    .info-cenprot {
        grid-column: 3;
        grid-row: 2;
        margin-right: 20px;
        text-align: right;
    }

    .image-container {
        max-height: 120px;
    }
}