/* Frontend Form */
.cfs-card {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cfs-field {
    margin-bottom: 20px;
}

.cfs-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.cfs-label .required {
    color: #d63638;
}

.cfs-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.cfs-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0,124,186,0.1);
}

.cfs-radio, .cfs-checkbox {
    display: block;
    margin: 8px 0;
}

.cfs-submit-btn {
    background: #007cba;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cfs-submit-btn:hover {
    background: #005a87;
}

.cfs-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cfs-response {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
}

.cfs-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cfs-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

