/* Cosmo Preventivo - Stili Frontend */

.ep-form-contenitore {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 24px;
    margin: 28px 0;
}

.ep-titolo-form {
    font-size: 1.3em;
    margin: 0 0 8px 0;
    color: #2c2c2c;
}

.ep-descrizione-form {
    color: #666;
    margin: 0 0 20px 0;
    font-size: 0.95em;
}

.ep-campo-gruppo {
    margin-bottom: 16px;
}

.ep-campo-gruppo label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #333;
}

.ep-required {
    color: #e00;
}

.ep-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.ep-input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
}

.ep-textarea {
    resize: vertical;
    min-height: 100px;
}

.ep-privacy label {
    font-weight: normal;
    font-size: 0.85em;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ep-privacy input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.ep-bottone-invia {
    background: #0073aa;
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 8px;
}

.ep-bottone-invia:hover {
    background: #005f8d;
    color: #fff !important;
}

.ep-bottone-invia:disabled {
    background: #999;
    cursor: not-allowed;
}

.ep-messaggio-risposta {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 0.95em;
}

.ep-messaggio-risposta.ep-successo {
    background: #eaffea;
    border: 1px solid #5cb85c;
    color: #2d662d;
}

.ep-messaggio-risposta.ep-errore {
    background: #fff0f0;
    border: 1px solid #e00;
    color: #b00;
}
