 body {
            margin: 0;
            position: relative;
            font-family: "Helvetica Neue", Arial, sans-serif;
            font-weight: 300;
            color: #000;

            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }

        .bg-video {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            z-index: -2;
            z-index: -1;
        }

        .container {
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        h1 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 10px;
            text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
        }

        p {
            color: #333;
            margin-bottom: 30px;
            text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
        }

        .active {
            text-decoration: underline;
        }
        
        .inputModeButton {
            border: none;
            background-color: transparent;
            color: #333;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .inputModeButton:hover {
            color: #000;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .emailRow, .phoneRow {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .emailRow input {
            flex: 1;
        }

        .phoneRow select {
            flex: 0 0 90px;
            min-width: 90px;
        }

        .phoneRow input {
            flex: 1;
        }

        .inputField {
            padding: 12px;
            border: 0px solid #ccc;
            background-color: #f6f6f6bc;
            color: #000;
            font-size: 1rem;
            font-weight: 300;
            line-height: 1;
            height: 44px;
            box-sizing: border-box;
        }

        .inputField:focus {
            outline: none;
            border-color: #000;
        }

        .inputButton {
            padding: 12px 20px;
            border: none;
            background-color: #000;
            color: #fff;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .inputButton:hover {
            background-color: #333;
        }

        .options {
            padding-top: 10px;
        }

        #message {
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 1;
            text-shadow: 0 0px 1px rgba(0, 0, 0, 0.5);
        }

        #message.show {
            opacity: 1;
        }

        #message.fade-out {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .footer {
            margin-top: 15px;
            font-size: 0.8rem;
            text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
        }

        .footer a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #000;
        }