.maree-alert-subscribe-wrapper {
    max-width: 480px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.maree-alert-title {
    margin: 0 0 8px;
    font-size: 22px;
    color: #0077b6;
    text-align: center;
}
.maree-alert-description {
    text-align: center;
    color: #666;
    margin: 0 0 24px;
    font-size: 14px;
}
.maree-alert-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.maree-alert-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}
.maree-alert-field input,
.maree-alert-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.maree-alert-field input:focus,
.maree-alert-field select:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}
.maree-alert-submit {
    background: #0077b6;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.maree-alert-submit:hover {
    background: #005f8d;
}
.maree-alert-submit:disabled {
    background: #9cc5e0;
    cursor: not-allowed;
}
.maree-alert-message {
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}
.maree-alert-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.maree-alert-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
