.custom-account-form, .custom-password-change-form {
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.custom-account-form h3, .custom-password-change-form h3 {
    text-align: center;
    color: #333;
}

.custom-account-form label, .custom-password-change-form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.custom-account-form input, .custom-password-change-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.custom-account-form button, .custom-password-change-form button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.custom-account-form button:hover, .custom-password-change-form button:hover {
    background: #0056b3;
}

/* Thông báo */
#webo-message {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    background: rgb(203, 241, 194);
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
}

#webo-message i {
    font-size: 24px;
    color: rgb(223, 155, 8);
    margin-right: 10px;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

#bell-icon {
    animation: shake 1s ease-in-out infinite;
}
