/* components/notice.css */

.notice {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.notice--success {
    background: #e9f8ee;
    border: 1px solid #9bd3aa;
    color: #1d6b34;
}

.notice--error {
    background: #fdecec;
    border: 1px solid #e3a1a1;
    color: #8a1f1f;
}

.notice--info {
    background: #eef4ff;
    border: 1px solid #a9c3ee;
    color: #244b80;
}

@media (max-width: 720px) {
    .notice {
        padding: 11px 12px;
        font-size: 0.95rem;
    }
}