.anotify-form-container {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.anotify-form h3 {
    margin-top: 0;
    color: #333;
}

.anotify-field {
    margin-bottom: 15px;
}

.anotify-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.anotify-field input,
.anotify-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

.anotify-field input:focus,
.anotify-field textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 115, 170, 0.3);
}

.anotify-submit-btn {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.anotify-submit-btn:hover {
    background: #005a87;
}

.anotify-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.anotify-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: bold;
}

.anotify-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.anotify-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
