﻿.video-wrapper {
    position: relative;
}

.video-wrapper video {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 20px 40px;
    backdrop-filter: blur(10px); /* keeps glass effect */
    background: rgba(0,0,0,0); /* fully transparent */
    border-radius: 20px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    box-shadow: none !important; /* remove any shadow */
}

/*.extra-bottom {
     min-height: 120px !important;*/
.video-wrapper iframe {
    pointer-events: auto;
    z-index: 9999;
    position: relative;
}
.my-animated-btn {
    background: linear-gradient(120deg, #0a7bff, #4fb8ff, #0a7bff);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
    border-radius: 50px;
    font-weight: 900;
    padding: 12px 35px;
    color: #fff;
    display: inline-block;
    transition: .3s ease;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.my-animated-btn:hover {
    transform: scale(1.05);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .captcha-box img {
        height: 46px;
        border-radius: 6px;
        border: 1px solid #ddd;
    }

.refresh-link {
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.btn-login {
    height: 46px;
    border-radius: 8px;
    font-weight: 600;
}

.error-msg {
    text-align: center;
    font-size: 14px;
}

.modern-modal .modal-content {
    border-radius: 18px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modern-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modern-modal .modal-title {
    font-weight: 600;
}

.custom-header {
    background: linear-gradient(135deg, #1d3557, #06BBCC);
    color: #fff;
}
