/** css for cf7 forms 
It will be enqueued if contact form 7 plugin is active
*/

/* General form text settings */
.wpcf7 form,
.wpcf7 form p,
.wpcf7 form label,
.wpcf7 form input,
.wpcf7 form textarea,
.wpcf7 form a {
    font-size: 16px;
    line-height: 24px;
}
.wpcf7-form a {
    color: var(--gldn-light-blue);
}
.wpcf7-list-item {
    margin-left: 0;
}
/* Labels */
.wpcf7 form label {
    font-weight: 400;
    line-height: 24px;
}

/* Paragraph text */
.wpcf7 form p {
    font-weight: 300;
}

/* Acceptance text (inside span.wpcf7-list-item or label) */
.wpcf7-acceptance label,
.wpcf7-list-item-label {
    font-weight: 300;
}

/* Text inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="password"] {
    height: 34px;
    padding: 4px 8px;
    background-color: rgba(140, 140, 140, 0.2);
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    margin: 9px 0 19px;
}

/* Textareas */
.wpcf7-form textarea {
    height: 266px;
    padding: 8px;
    background-color: rgba(140, 140, 140, 0.2);
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    margin: 9px 0 30px;
}

/* Checkboxes & Radio buttons */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    /*appearance: none;*/
    width: 16px;
    height: 16px;
    border: 1px solid #8c8c8c50;
    border-radius: 0;
    display: inline-block;
    position: relative;
    margin-right: 6px;
    vertical-align: middle;
}
/* submit and buttons */
.wpcf7-form input[type="submit"] {
    cursor: pointer;
    border: 0px solid var(--gldn-light-blue);
    border-bottom-width: 3px;
    background: transparent;
    padding: 6px 0 0;
    margin: 30px 0;
    font-weight: 500; 
}

.wpcf7-form input[type="submit"]:hover {
    color: var(--gldn-light-blue);
}
