/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2026 | 12:27:15 */
/* Main Form Box */

/* .sports-venue-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
} */


/* Heading */

.sports-venue-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
	margin-top: 0px;
}


#wpcf7-f648-p6583-o1 .form-intro {
    color:#666;
    margin-bottom:15px !important;
}

.sports-venue-form .form-full-width {
    width:100%;
    margin-bottom:20px;
}

/* Two Column Grid */

.venue-form-grid {
    display:grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
}


/* Labels */

.sports-venue-form label {
    display:flex;
    font-weight:700;
    font-size:15px;
    margin-bottom:8px;
    color:#222;
}


/* Inputs */

.sports-venue-form input,
.sports-venue-form textarea {
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:13px 15px;
    font-size:15px;
    transition:all .3s ease;
    background:#fafafa;
}
/* Venue Type Dropdown Styling */

.sports-venue-form select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fafafa;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all .3s ease;

    /* Custom arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3e%3cpath fill='%23666' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}


/* Hover */

.sports-venue-form select:hover {
    border-color: #bbb;
}


/* Focus */

.sports-venue-form select:focus {
    border-color: #1e88e5;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30,136,229,.12);
}


/* Match input height */

.sports-venue-form input,
.sports-venue-form select {
    min-height: 48px;
}


/* Focus Effect */

.sports-venue-form input:focus,
.sports-venue-form textarea:focus {
    border-color:#1e88e5;
    background:#fff;
    outline:none;
    box-shadow:0 0 0 3px rgba(30,136,229,.12);
}


/* Message Box */

.sports-venue-form textarea {
    min-height:130px;
    resize:none;
}


/* Full Width */

.full-width {
    margin-top:20px;
}


/* Checkbox */

.form-checkbox {
    margin:20px 0px !important;
    font-size:14px;
}
.form-checkbox span.wpcf7-list-item-label {
    align-content: center;
}
#wpcf7-f648-p6583-o1 .form-checkbox input{
	margin-right: 5px;
}


/* Submit Button */

.sports-venue-form input[type="submit"] {

    background:#FDE643;
    color:#000;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}


.sports-venue-form input[type="submit"]:hover {

    background:#FDE643;
	color:#000;
    transform:translateY(-2px);

}


/* Mobile */

@media(max-width:768px){

    .venue-form-grid {
        grid-template-columns:1fr !important;
    }

    .sports-venue-form {
        padding:20px;
    }

}