.body {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.html {
    height: 100%;
}

.margin_unregister {
    margin-top: 15px;
    margin-bottom: 15px;
}

.text_success {
    text-align: center
}

.icon_text_success {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.icon_success {
    font-size: 50px;
    color: green;
    margin-right: 20px;
}

.btn_align {
    justify-content: center;
    display: flex;
    margin-top: 20px;
}

.margin_content {
    width: 40%;
}

.btn_style {
    background-color: #016801;
    width: 120px;
}

.footer_style {
    background-color: #6D6D6D;
    margin-top: 20px;
    padding-bottom: 20px;
}

.img_footer {
    width: 260px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.text_footer {
    margin: 0;
    color: white;
    font-weight: bolder;
    padding: 15px;
}

#img_top {
    margin-bottom: 25px;
}

#img_top_desk {
    margin-bottom: 25px;
}

#img_top_desc {
    margin-bottom: 25px;
}

#img_top_desk_desc {
    margin-bottom: 25px;
}

.h1_success {
    align-items: center;
    display: flex;
}

.text_success_unregister {
    animation-name: exibirOutros;
    animation-duration: 3s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    text-align: center;
    color: green;
    margin-top: 30px;
}

.text_error_unregister {
    animation-name: exibirOutros;
    animation-duration: 3s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    text-align: center;
    color: rgb(159, 0, 0);
    margin-top: 30px;
}

.text_success_unregister_h5 {
    margin-top: 5px;
    margin-bottom: 5px;
    border: 2px solid rgba(0, 180, 0, 0.5);
    border-radius: 10px;
}

.text_error_unregister_h5 {
    margin-top: 5px;
    margin-bottom: 5px;
    border: 2px solid rgba(211, 0, 0, 0.5);
    border-radius: 10px;
}

@keyframes exibirOutros {
    0% {
        visibility: visible;
        opacity: 0;
    }
    25% {
        visibility: visible;
        opacity: 1;
    }
    75% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: hidden;
        opacity: 0;
    }
}

@media(min-width:710px) {
    .margin_mobile {
        justify-content: center;
        display: flex;
    }
}

@media(max-width: 700px) {
    #img_top {
        width: 100%;
        display: block !important;
    }
    #img_top_desk {
        display: none;
    }
    #img_top_desc {
        width: 100%;
        display: block !important;
    }
    #img_top_desk_desc {
        display: none;
    }
    .margin_content {
        width: 70%;
    }
    .label_check {
        font-size: 12.5px;
    }
    .text_footer {
        font-size: 12.5px;
    }
    .margin_mobile {
        padding: 0;
    }
    .img_footer {
        width: 40%;
    }
    .h1_success {
        font-size: 20px;
    }
}