body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #830000;
}

.d-none {
    display: none;
}

header {
    background: #ee0400;
    padding: 10px 0;
    text-align: center;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    width: 20%;
}

main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 2rem;
    /* height: 80vh; */
    background: url('https://image.news.lojacolgate.com.br/lib/fe33117170640474761475/m/1/a46a0b39-01e4-4f56-af1f-8d61371f7ff3.png') #830000 right center no-repeat;
    background-size: contain;
}

.content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 4rem;
}

.text-block {
    width: 35%;
}

.text-block p {
    margin: 2.5rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-block {
    text-align: right;
}

#searchForm {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 3rem;
    width: 35vw;
}

form label,
form p {
    color: #000;
    text-align: left;
}

form label {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

form input#postalCode {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    flex: .9;
}

.form-container-row {
    display: flex;
    width: 100%;
}

.form-inputs-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.form-inputs-column label{
    font-size: 1rem;
    margin-top: 1rem;
}

.form-inputs-column select{
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 0.6rem;
    flex: 1;
}


form button[type="submit"] {
    color: #fff;
    background-color: #ee0400;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    flex: 1;
    padding: 0.5rem;
    box-sizing: border-box;
    margin-top: 1rem;
}

input,
button {
    margin: 5px;
}

.error-text{
    color: red;
    font-size: .8rem;
}

.additional-info {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-container-column {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #000;
    width: 60%;
}

.result-box {
    font-size: .8rem;

}

.result-box h3 {
    font-weight: normal;
}

.result-box p {
    width: 100%;
    text-align: left;
    background-color: #ddd;
    border-radius: 1rem;
    font-weight: bold;
    padding: 1rem;
}

a.cta-store {
    color: #fff;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    background-color: #009988;
    cursor: pointer;
    border-radius: 15px;
    text-align: center;
    align-self: flex-start;
    text-decoration: none;
}

footer {
    background-color: #830000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
    padding: 4px;
    text-align: center;
}

footer a {
    text-decoration: underline;
    color: #fff;
}

footer svg {
    fill: #fff;
    width: 20px;
}

footer img {
    width: 50px;
}

@media (max-width: 960px) {
    main {
        background: #830000 right center no-repeat;
    }

    .text-block {
        width: 100%;
    }

    #searchForm {
        background-color: #fff;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 1rem;
        width: 85vw;
    }

    form input#postalCode {
        border: 2px solid #ddd;
        border-radius: 10px;
        padding: 1rem;
        flex: .6;
    }

    form button[type="submit"] {
        color: #fff;
        background-color: #ee0400;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 15px;
        border: none;
        box-sizing: border-box;
        cursor: pointer;
        flex: .4;
    }
}