/* assets/css/style.css - estilo básico do formulário */
.anec-desconto-form {
    max-width: 520px;
    margin: 0 auto 1.5em;
    padding: 1em;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.anec-desconto-form .field {
    margin-bottom: 0.9em;
}

.anec-desconto-form label {
    display: block;
    margin-bottom: 0.3em;
    font-weight: 600;
    font-size: 0.95em;
}

.anec-desconto-form input[type="text"],
.anec-desconto-form input[type="email"],
.anec-desconto-form input[type="tel"] {
    width: 100%;
    padding: 0.55em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 0.95em;
}

.anec-desconto-form .actions {
    text-align: right;
}

.anec-desconto-form .btn-submit {
    background: #0073aa;
    color: #fff;
    border: 0;
    padding: 0.6em 1em;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.anec-desconto-form .btn-submit:hover {
    background: #006799;
}

#anec-desconto-messages {
    margin-top: 0.8em;
    min-height: 1.2em;
    font-size: 0.95em;
}

.msg {
    padding: 0.5em;
    border-radius: 4px;
}

.msg-success {
    color: #083d16;
    background: #dff0df;
    border: 1px solid #c7e6be;
}

.msg-error {
    color: #4d0505;
    background: #ffe6e6;
    border: 1px solid #f5c2c2;
}
