   
        :root {
            --primary-color: #F9DF3D;
            --secondary-color: #F9DF3D;
            --accent-color: #F9DF3D;
            --light-color: #F9DF3D;
            --dark-color: #212529;
            --success-color: #4cc9f0;
            --error-color: #f72585;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow: hidden;
            background-color: #000;
        }

        .login-card {
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.5) !important;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 386px;
            margin: 0 auto;
        }

        .card-header {
            color: rgb(249, 221, 41);
            padding: 15px;
            text-align: center;
            position: relative;
        }

        .tittle {
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        .card-header h2 {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 24px;
        }

        .card-header p {
            opacity: 0.8;
            font-size: 14px;
        }

        .card-body {
            padding: 20px;
        }

        .logo {
            width: 50px;
            height: 50px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: -40px auto 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            top: 27px;
        }

        .logo i {
            color: var(--primary-color);
            font-size: 22px;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: white;
            font-size: 14px;
        }

        .phone-input {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }

        .country-code {
            background-color: #f5f5f5;
            padding: 10px 12px;
            border-right: 1px solid #ddd;
            font-weight: 500;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .country-code span {
            margin-left: 5px;
        }

        .phone-input input {
            flex: 1;
            border: none;
            padding: 10px 12px;
            font-size: 14px;
            outline: none;
        }

        .otp-container {
            display: none;
        }

        .otp-inputs {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            gap: 8px;
        }

        .otp-inputs input {
            width: 40px;
            height: 50px;
            text-align: center;
            font-size: 18px;
            border: 1px solid #ddd;
            border-radius: 8px;
            outline: none;
            transition: all 0.3s;
            flex: 1;
        }

        .otp-inputs input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }

        .btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: rgb(249, 221, 41);
            color: black;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
        }

        .btn:active {
            transform: translateY(0);
        }

        .resend-otp {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: #666;
        }

        .resend-otp a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .resend-otp a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .error {
            color: var(--error-color);
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .success-message {
            color: var(--success-color);
            text-align: center;
            margin: 10px 0;
            font-weight: 500;
            font-size: 14px;
            display: none;
        }

        .timer {
            text-align: center;
            color: #666;
            font-size: 12px;
            margin-top: 5px;
        }

        .back-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 5px 0;
        }

        .back-btn i {
            margin-right: 5px;
        }

        #recaptcha-container {
            display: none;
        }

        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .company-logo {
            height: 60px;
            width: 180px;
            margin: 0 auto 10px;
            display: block;
            object-fit: contain;
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .login-card {
                padding: 1rem;
            }

            .card-header {
                padding: 10px;
            }

            .card-header h2 {
                font-size: 20px;
            }

            .card-body {
                padding: 15px;
            }

            .otp-inputs input {
                width: 35px;
                height: 45px;
                font-size: 16px;
            }

            .btn {
                padding: 10px;
                font-size: 14px;
            }

            .company-logo {
                height: 50px;
                width: 150px;
            }
        }

        @media (max-width: 360px) {
            .otp-inputs input {
                width: 30px;
                height: 40px;
                font-size: 14px;
            }

            .phone-input input {
                padding: 8px 10px;
                font-size: 13px;
            }

            .country-code {
                padding: 8px 10px;
                font-size: 13px;
            }
        }

        