.body {
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

input.form-control,
.form-check,
.modal-title,
.modal-body,
.modal-footer,
button {
    font-size: 14px !important;
}

form#newsletter-form {
    display: flex;
    align-items: center;
    width: 80%;
}

@media (max-width: 780px) {
    form#newsletter-form {
        width: 90% !important;
    }
}



input#newsletter-email {
    border-color: black;
    border-radius: 5px 0px 0px 5px;
}

button.btn.btn-primary.mt-2 {
    display: flex;
    width: 100%;
    justify-content: center;
    border-color: black;
    align-items: center;
    margin: 0 !important;
    border-radius: 0px 5px 5px 0px;
}

.modal-img-container {
    text-align: center;
    margin-bottom: 15px;
}

.modal-img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.form-check {
    text-align: left;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 10px;
}

.error-message {
    color: red;
    font-size: 14px;
    display: none;
    margin-top: 5px;
}

.form-check-input {
    position: absolute;
    margin-top: 0rem !important;
    margin-left: -1.25rem;
    transform: scale(1.2);
}

.modal.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1055 !important;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
    z-index: 1050 !important;
}

div#newsletterModal {
    padding: 0px !important;
}

.modal-loading {
display: none;
position: fixed;
width: 20rem;
height: 10rem;
left: 50%;
top: 50%;
margin-left: -10rem;
margin-top: -5rem;
background: rgb(233, 233, 233);
border-radius: 0.5rem;
border: 0.1rem solid #8fa0b2;
z-index: 1060;
}

.modal-loading .caption {
margin: 2rem auto;
color: rgb(48, 48, 48);
text-align: center;
text-transform: uppercase;
font-family: sans-serif;
}

.modal-loading .animation {
position: relative;
width: 8rem;
/* aumentado para comportar o movimento */
height: 3rem;
margin: 0 auto;
}


.modal-loading .animation::before,
.modal-loading .animation::after {
content: "";
width: 3rem;
height: 3rem;
border-radius: 50%;
position: absolute;
top: 0;
animation: loading_circles 1.6s infinite linear;
}

.modal-loading .animation::before {
background-color: rgb(10, 10, 10);
left: 0;
}

.modal-loading .animation::after {
background-color: rgb(255, 220, 20);
left: 0;
animation-delay: 0.8s;
}

@keyframes loading_circles {
0% {
transform: translateX(0) scale(1);
z-index: 2;
}

25% {
transform: translateX(45px) scale(1.3);
}

50% {
transform: translateX(90px) scale(1);
z-index: 2;
}

51% {
z-index: 1;
}

75% {
transform: translateX(45px) scale(0.6);
}

100% {
transform: translateX(0) scale(1);
z-index: 1;
}
}

.texto-font-size {
    font-size: 16px;
}