/* Registration Form Styles */
.file-upload-btn:hover {
    background: #2872fa !important;
}

.submit-btn:hover {
    background: #2872fa !important;
}

/* Floating Message */
#td-floating-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

#td-floating-message.show {
    opacity: 1;
    transform: translateX(0);
}

#td-floating-message.success {
    background: #28A745;
}

#td-floating-message.error {
    background: #DC3545;
}
