/* DC Connect V5 contact form */

.v5-contact-grid{
    display:grid;
    grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
    gap:70px;
    align-items:start;
}

.v5-contact-details a{
    color:#14283c;
    text-decoration:none;
}

.v5-contact-formbox{
    background:#f5f1e9;
    padding:42px;
}

.v5-contact-formbox h2{
    margin-top:10px;
}

.v5-contact-form{
    margin-top:28px;
}

.v5-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.v5-contact-form label{
    display:block;
}

.v5-contact-form label > span{
    display:block;
    margin-bottom:8px;
    color:#34495a;
    font-size:13px;
    font-weight:600;
}

.v5-contact-form input,
.v5-contact-form textarea{
    box-sizing:border-box;
    width:100%;
    border:1px solid #d5d8db;
    background:#fff;
    padding:14px 15px;
    font:inherit;
    color:#14283c;
    outline:none;
}

.v5-contact-form input:focus,
.v5-contact-form textarea:focus{
    border-color:#b68b42;
    box-shadow:0 0 0 2px rgba(182,139,66,.10);
}

.v5-form-message{
    margin-top:20px;
}

.v5-contact-form button{
    margin-top:22px;
    border:0;
    cursor:pointer;
}

.v5-form-note{
    margin:15px 0 0;
    color:#77838c;
    font-size:12px;
}

.v5-form-success{
    margin-bottom:25px;
    padding:16px 18px;
    background:#e9f4ec;
    border:1px solid #bdd9c4;
    color:#285d35;
}

.v5-form-errors{
    margin-bottom:25px;
    padding:16px 18px;
    background:#fff0ef;
    border:1px solid #ecc9c5;
    color:#852e28;
}

.v5-form-errors ul{
    margin:8px 0 0 18px;
    padding:0;
}

.v5-honeypot{
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}

@media(max-width:850px){
    .v5-contact-grid{
        grid-template-columns:1fr;
        gap:35px;
    }
}

@media(max-width:580px){
    .v5-contact-formbox{
        padding:25px;
    }

    .v5-form-grid{
        grid-template-columns:1fr;
    }
}
