/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 14 2026 | 06:57:31 */
/* Main wrapper */
.cf7-appointment-form {
    max-width: 900px;
    margin: auto;
    background: #fdf5f1;
    padding: 32px;
    border-radius: 14px;
}

/* Rows */
.cf7-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

/* Fields */
.cf7-field {
    width: 50%;
}

/* Inputs & Select */
.cf7-appointment-form input[type="text"],
.cf7-appointment-form input[type="email"],
.cf7-appointment-form input[type="number"],
.cf7-appointment-form input[type="date"],
.cf7-appointment-form select {
    width: 100%;
    padding: 25px 20px 20px 20px!important;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
    outline: none;
}

/* Placeholder */
.cf7-appointment-form input::placeholder {
    color: #999;
}

/* Select dropdown arrow */
.cf7-appointment-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

/* Submit button */
.cf7-submit {
    margin-top: 10px;
}

.cf7-submit input[type="submit"] {
    background: #6c3fb0;
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cf7-submit input[type="submit"]:hover {
    background: #56308a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cf7-row {
        flex-direction: column;
    }

    .cf7-field {
        width: 100%;
    }
}
