#contato {
    padding-top: 30px;
    margin-bottom: 50px;
}

.form-control {
    border-radius: 10px;
    font-size: 14px;
    padding: 12px;
}

.error {
    text-align: center;
    color: #b70000;
    font-size: 12px !important;
    padding: 0 0 10px 0;
    font-weight: 500;
}

#contactForm input[type="text"],
#contactForm input[type="password"],
#contactForm input[type="date"],
#contactForm input[type="datetime"],
#contactForm input[type="email"],
#contactForm input[type="number"],
#contactForm input[type="search"],
#contactForm input[type="tel"],
#contactForm input[type="time"],
#contactForm input[type="url"],
#contactForm input[type="file"],
#contactForm textarea,
#contactForm select {
    font-size: 17px;
    height: auto;
    margin: 0;
    outline: 0;
    padding: 16px;
    width: 100%;
    background-color: #f3f2f2;
    color: #444;   
    border: none;
    margin-bottom: 8px;
    border-radius: 10px;
}


#contactForm input[type="radio"],
#contactForm input[type="checkbox"] {
    outline: 0;
}

#contactForm label {
    display: inline-block;
}

#contactForm label.light {
    font-weight: 300;
    display: inline;
}

#contactForm .cartao_dominio {
    color: #3498db;
    padding: 10px;
    margin-top: -20px;
}

#contactForm input[id="logoImage"] {    
    border-radius: 5px;
}

#contactForm fieldset {
    margin-bottom: 10px;
    border: none;
}

#contactForm a.termo_text {
    width: 100%;
    display: inline-block;
    padding: 0;
    font-size: 1.05rem;
    color: #3498db;
    /* text-align: center; */
    cursor: pointer;
}

#contactForm a.termo_text i {
    font-size: 1.4rem;
    margin-right: 5px;
    vertical-align: middle;
}

/* --------------------------------
    Botao Submit Animacao
-------------------------------- */

#contactForm .button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin: 20px auto;
    padding: 20px 25px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary) !important;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

#contactForm .button:hover {
    color: white;
    padding: 20px 25px;
    background-color: var(--color-primary-hover);
    border: 2px solid var(--color-primary-hover) !important;
    transition: var(--transition);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    opacity: 1;
}

.button:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #000000;
}

.button span {
    position: absolute;
    line-height: 0;
}

.button span i {
    transform-origin: center center;
}

.button span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%);
}

.button span:nth-of-type(2) {
    top: 100%;
    transform: translateY(0%);
    font-size: 24px;
}

.button span:nth-of-type(3) {
    display: none;
}

.active-send {
    background-color: #ae37dd;
    border: 1px solid black !important;
}

.active-send:before {
    width: 100%;
    transition: width 3s linear;
}

.active-send span:nth-of-type(1) {
    top: -100%;
    transform: translateY(-50%);
}

.active-send span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.active-send span:nth-of-type(2) i {
    animation: loading 500ms linear infinite;
}

.active-send span:nth-of-type(3) {
    display: none;
}

.finished {
    background-color: #ae37dd;
}

.finished .submit {
    display: none;
    margin: auto;
}

.finished .loading {
    display: none;
}

.finished .check {
    display: block !important;
    font-size: 24px;
    animation: scale 0.5s linear;
}

.finished .check i {
    transform-origin: center center;
}

.hide {
    display: none;
}


/* Animacao Icon loading / Barra Progressiva */

@keyframes loading {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scale {
    0% {
        transform: scale(10);
    }
    50% {
        transform: scale(0.2);
    }
    70% {
        transform: scale(1.2);
    }
    90% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(1);
    }
}