 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
        }
        h2 {
            text-align: center;
            color: #fff;
        }
        .message {
            text-align: center;
            font-weight: bold;
            margin-bottom: 20px;
        }
        form {
            background: #373a3c;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 100, 250, 0.1);
            width: 500px;
            position: relative;
            z-index: 1;
        }
        label {
            font-weight: bold;
            margin-bottom: 5px;
            display: block;
            color:#fff;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            width: calc(100% - 20px);
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            display: block;
            font-size: 16px;
        }
        input[type="submit"] {
            width: 100%;
            padding: 10px;
            background-color: #13396C;
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        input[type="submit"]:hover {
            background-color: #FFBFBF;
        }
        img {
            display: block;
            margin: 20px auto;
            max-width: 100%;
        }
        footer {
            background-color: #13396C;
            color: white;
            width: 100%;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            bottom: 0;
        }
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .copy-button {
            width: 100%;
            padding: 10px;
            background-color: #FE0102;
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;