﻿.video-gradient {
    position: relative;
    width: 100%;
}

    .video-gradient::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: rgba(255, 0, 0, 0.2)
    }

.contact-form {
    position: relative;
}


/* Toaster Container */
.toaster-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* Toaster Notification */
.toaster {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Success */
.toaster-success {
    background-color: #4caf50;
}

/* Error */
.toaster-error {
    background-color: #bb0c00;
}