/* Basic Frontend Styles */
.evolead-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: inherit;
}
.evolead-fields-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.evolead-field-row {
    display: flex;
    flex-direction: column;
}
.evolead-width-full { width: 100%; }
.evolead-width-half { width: calc(50% - 7.5px); }

.evolead-field-row label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}
.evolead-required { color: #e53e3e; margin-left: 3px; }

.evolead-field-row input[type="text"],
.evolead-field-row input[type="email"],
.evolead-field-row input[type="tel"],
.evolead-field-row input[type="number"],
.evolead-field-row input[type="date"],
.evolead-field-row textarea,
.evolead-field-row select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.evolead-field-row input:focus,
.evolead-field-row textarea:focus,
.evolead-field-row select:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.evolead-radio, .evolead-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-weight: normal !important;
}

.evolead-submit-container {
    margin-top: 20px;
    text-align: right;
}
.evolead-submit-btn {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.evolead-submit-btn:hover { background: #005a87; }
.evolead-submit-btn:disabled { cursor: not-allowed; }

.evolead-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}
.evolead-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.evolead-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

@media (max-width: 600px) {
    .evolead-width-half { width: 100%; }
}
