.wosd-notify-form {
    background: #f4f6f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 30px;
    max-width: 460px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.wosd-notify-form p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.wosd-form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wosd-notify-form form input[type=email] {
    flex: 1;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.3s;
}

.wosd-notify-form form input[type=email]:focus {
    border-color: #4a90e2;
    outline: none;
}

.wosd-notify-form form button {
    background: #111111;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.wosd-notify-form form button:hover{
    background-color: transparent;
    color: #000;
}

.wosd-notify-form form button:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    .wosd-form-fields {
        flex-direction: column;
        align-items: stretch;
    }

    .wosd-notify-button {
        width: 100%;
    }
}