/* FORM ELEMENTS 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.form-with-animated-labels .form-wrapper {
    position: relative;
}

[data-bs-theme=dark] .form-with-animated-labels [type="text"] ,
[data-bs-theme=dark] .form-with-animated-labels [type="email"] ,
[data-bs-theme=dark] .form-with-animated-labels [type="tel"] ,
[data-bs-theme=dark] .form-with-animated-labels textarea {
    border-color: #9B9CA6;
    color: #F8F9FA;
    background: #404449;
}
.form-with-animated-labels textarea {
    width: 100%;
    height: 150px;
}

.form-with-animated-labels [type="text"],
.form-with-animated-labels [type="email"],
.form-with-animated-labels [type="tel"],
.form-with-animated-labels textarea {
    width: 100%;
    padding: 16px 12px 8px 12px;
    border: 1px solid;
    border-color: #C2C6C8;
    border-radius: 8px;
    color: #060808;
    background: white;
    font-family: "Prompt";
    font-size: 18px;
    box-sizing: border-box;
}

.form-with-animated-labels label {
    position: absolute;
    top: 14px;
    left: 12px;
    font-size: 18px;
    color: #9B9CA6;
    transition: all 0.25s ease-in-out;
}

.form-with-animated-labels label.focused {
    top: 2px;
    transform: none;
    font-size: 13px;
    color: #9B9CA6;
}

.form-with-animated-labels [type="submit"] {
    min-width: 160px;
    padding: 12px 4px;
    border-radius: 8px;
    width: 100%;
    font-size: 21px;
    font-weight: 500;
    color: #F8F9FA;
    border-style: none;
    cursor: pointer;
}

[data-bs-theme=dark] .wpcf7-submit {
    color: #060808;
    background: #F8F9FA;
}

.wpcf7-submit {
    background: #060808;
    transition: 0.4s;
    transition-timing-function: ease-out;
}
[data-bs-theme=dark] .wpcf7-submit:hover {
    background-color: #C2C6C8;

}
.wpcf7-submit:hover {
    background-color: #323232;

}

.form-with-animated-labels .wpcf7-form-control-wrap {
    position: static;
}
.form-with-animated-labels .wpcf7-not-valid-tip {
    /*position: absolute;*/
    /*bottom: 100%;*/
    right: 10px;
    font-size: 12px;
}

.wpcf7-spinner {
    position: absolute !important;
    top: 50%;
    right: 60%;
    display: none; /* Esconde o spinner por padrão */
}

/* OUTPUT MESSAGES CF7 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    line-height: 1.2;
    padding: 12px;
    margin: 0;
}

[data-bs-theme=dark] .wpcf7-not-valid-tip {
    color: #ea868f
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    width: auto;
    border-radius: 8px;
    margin: 12px 0 0 0;
    /*animation: fadeOut 5s forwards;*/
}