/*
*
* Tracking return CSS
*
*/

.trmd_search_form {
    width: 75%;
    margin: auto;
}
.trmd_search_form input {
    box-shadow: 0 2px 12px rgb(21 21 21 / 20%);
    border: 1px solid transparent;
    margin-top: -12px;
    width: calc(99% - 33px);
    padding: 20px;
    border-radius: 5px;
}
.trmd_search_form .response {
    margin-bottom: 30px;
}
.trmd_search_form .submit,
.trmd_search_form .send,
.trmd_search_form .refresh {
    background: #f28230;
    color: #fff;
    border: 1px solid #f28230;
    padding: 7px 15px;
    text-align: center;
    max-width: 150px;
    border-radius: 5px;
}
.trmd_search_form .submit:hover,
.trmd_search_form .send:hover,
.trmd_search_form .refresh:hover {
    cursor: pointer;
    color: #f28230;
    background: #fff;
}
.trmd_search_form .email,
.trmd_search_form .send,
.trmd_search_form .refresh,
.trmd_search_form .text_email {
    display: none;
}
.trmd_search_form .final_response {
    margin-bottom: 15px;
    margin-top: 20px;
}
.trmd_search_form .wrong {
    color: #E5401F;
    background: #f9d8d2;
    padding: 20px;
    border-radius: 5px;
}
.trmd_search_form .correct {
    color: #0ba425;
    background: #c3e3c8;
    padding: 20px;
    border-radius: 5px;
}
.trmd_search_form .send, .trmd_search_form .refresh {
    margin-bottom: 20px;
}
.trmd_search_form .submit {
    margin-top: 20px;
    margin-bottom: 20px;
}
.trmd_search_form .text_email {
    color: #fff;
}


@media screen and (max-width: 1000px) {
    .trmd_search_form {
        width: 100%;
    }
    .trmd_search_form input {
        width: calc(99% - 39px);
    }
}