.vale-avise-me-wrap{
    margin:20px 0;
    width:100%;
}

.vale-avise-me-box{
    box-sizing:border-box;
    width:100%;
    border:1px solid #e3e7ee;
    border-radius:14px;
    padding:18px;
    background:#fff;
    box-shadow:0 4px 16px rgba(17,24,39,.04);
}

.vale-avise-me-head{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
}

.vale-avise-me-icon{
    flex:0 0 38px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#fff4dd;
    color:#f59e0b;
}

.vale-avise-me-icon svg{
    width:20px;
    height:20px;
    fill:currentColor;
}

.vale-avise-me-title{
    display:block;
    margin:1px 0 4px;
    font-size:18px;
    line-height:1.25;
    font-weight:700;
    color:#111827;
}

.vale-avise-me-head p{
    margin:0;
    font-size:14px;
    line-height:1.55;
    color:#4b5563;
}

.vale-avise-me-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:10px;
    align-items:stretch;
}

.vale-avise-me-row input[type=email]{
    box-sizing:border-box;
    width:100%;
    min-width:0;
    height:46px;
    margin:0;
    border:1px solid #cfd6e0;
    border-radius:9px;
    padding:0 14px;
    background:#fff;
    color:#111827;
    font-size:14px;
    outline:none;
    box-shadow:none;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.vale-avise-me-row input[type=email]:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.10);
}

.vale-avise-me-row button{
    box-sizing:border-box;
    min-width:154px;
    height:46px;
    margin:0;
    border:0;
    border-radius:9px;
    padding:0 18px;
    background:#111827;
    color:#fff;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    line-height:1;
    white-space:nowrap;
    box-shadow:none;
    transition:transform .15s ease, opacity .15s ease;
}

.vale-avise-me-row button:hover{
    opacity:.92;
    transform:translateY(-1px);
}

.vale-avise-me-row button:disabled{
    opacity:.65;
    cursor:wait;
    transform:none;
}

.vale-avise-me-consent{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin:11px 0 0;
    color:#5f6877;
    font-size:12px;
    line-height:1.45;
    cursor:pointer;
}

.vale-avise-me-consent input[type=checkbox]{
    flex:0 0 auto;
    width:15px;
    height:15px;
    margin:2px 0 0;
}

.vale-avise-me-message{
    display:none;
    margin-top:12px;
    padding:10px 12px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    line-height:1.4;
}

.vale-avise-me-message.success{
    display:block;
    background:#ecfdf3;
    color:#16803a;
    border:1px solid #bbf7d0;
}

.vale-avise-me-message.error{
    display:block;
    background:#fff1f2;
    color:#b42318;
    border:1px solid #fecdd3;
}

@media(max-width:640px){
    .vale-avise-me-box{padding:16px;border-radius:12px}
    .vale-avise-me-title{font-size:17px}
    .vale-avise-me-row{grid-template-columns:1fr}
    .vale-avise-me-row button{width:100%;min-width:0}
}
