.notification-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.notification-page h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* 卡片 */
.notification-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notification-card h3 {
    margin-bottom: 20px;
}

/* label */
.notification-card label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

/* input & select */
.notification-card input,
.notification-card select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* button */
.notification-card button {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background-color: #2c7be5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.notification-card button:hover {
    background-color: #1a5fd0;
}