.wpcf7-form label{
    width: 100%;
}

.wpcf7-text, .wpcf7-textarea{
   
    padding-left: 10px;
    border: solid 1px #dadcde;
    border-radius: 5px;
    transition: 0.2s;
    width: 100%;
}

.wpcf7-text
{
    height: 40px;
}

.wpcf7-textarea{
    padding-top: 10px;
}

.wpcf7-text:focus,  .wpcf7-textarea:focus{
    outline: none;
    border-color: #85b799;
}

.wpcf7-submit {
    background: #49b775;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    padding: 0px 20px;
    border: solid 1px #429c66;
    height: 40px;
    transition: 0.2s;
}

.wpcf7-submit:hover {
    background: #41a369;
    border-color: #367d53;
}

.wpcf7-submit:focus-within{
    outline: 0;
    box-shadow: 0 0 0 0.2rem #49b77530;
}


.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 !important;
    padding: 0.2em 1em !important;
    border: 1px solid #00a0d2 !important;
    background: #2cb7e2 !important;
    border-radius: 5px !important;
    width: 100% !important;
    color: #fff !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450 !important;
    background: #5ac364 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232 !important; /* Red */
    background: #f54848 !important;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28 !important;
    background: #f57e40 !important;
    
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900 !important;
    background: #f9c12f !important;
}

@media (min-width: 992px){
    .wpcf7-form label{
        width: 50%;
    }

    .wpcf7 form .wpcf7-response-output {
        width: 50% !important;
    }
}






