﻿
/* Container Overlay */
.event-modal-container {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(8px);
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* Modal Content Box */
.event-modal-content {
    background: #0b1c2d !important; /* Dark Side Panel Background */
    border-radius: 15px;
    max-width: 950px;
    width: 95%;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: none !important;
}

/* Left Panel (Visuals) */
.modal-left-panel {
    width: 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

    .modal-left-panel img {
        width: 100%;
        height: 320px !important;
        object-fit: fill;
        border: 8px solid #fff; /* White border like the screenshot */
        border-radius: 4px;
        margin-bottom: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }

.left-panel-text {
    font-size: 26px;
    font-weight: 800;
    text-align: left;
    width: 100%;
    line-height: 1.1;
    color: #fff;
}

    .left-panel-text span {
        color: #d4a762; /* Gold text */
    }

/* Right Panel (Form) */
.modal-right-panel {
    width: 60%;
    background: #fff !important; /* White background */
    padding: 45px;
    color: #000 !important; /* Black text */
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    line-height: 1;
}

.form-control,
.form-control-1 {
    border: none !important;
    border-bottom: 1.8px solid #cbd5e1 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: black!important;
    padding: 10px 4px !important;
    font-size: 14px !important;
    transition: all 0.3s ease;

}

    /* Focus Effect */
    .form-control:focus,
    .form-control-1:focus {
        border-bottom-color: #d4a762 !important;
        box-shadow: none !important;
    }

    .form-control:focus,
    .form-control-1:focus {
        background-image: linear-gradient( 90deg, transparent, rgba(212, 167, 98, 0.4), transparent );
        background-size: 200% 2px;
        background-repeat: no-repeat;
        background-position: bottom;
        animation: input-shine 1.5s ease;
    }

@keyframes input-shine {
    from {
        background-position: 200% bottom;
    }

    to {
        background-position: -200% bottom;
    }
}


.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    display: block;
}




@keyframes shine-animation {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* Footer Section */
.info-header {
    color: #d4a762;
    font-weight: 800;
    font-size: 14px;
    /*text-transform: uppercase;*/
    margin-bottom: 10px;
}

/* Event Title Field */
#txtEventTitle {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0b1c2d !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #d4a762 !important;
    padding: 8px 4px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.label-style,
.form-label-custom {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #475569;
    /*text-transform: uppercase;*/
}

.form-group-custom:first-child {
    margin-bottom: 22px;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");



.btn-fly {
    margin-top: 0px;
    position: relative;
    border: none;
    border-radius: 50px;
    padding: 10px 10px;
    font-size: 15px;
    font-weight: 700;
    color: #d4a762;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    /* Hover Animation: glow + lift */
    .btn-fly:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0,0,0,0.3), 0 0 15px rgba(79,103,237,0.7);
    }

   

.single-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: nowrap;
}

    /* Mobile field */
    .single-row #txtMobile {
        flex: 1.2;
    }

    /* Email field */
    .single-row #txtEmail {
        flex: 2;
    }

/* OTP Button */
.btn-otp {
    flex: 0 0 140px;
    height: 42px;
    padding: 0;
    margin-top: 2px;
}

/* Prevent shrinking */
.single-row input,
.single-row button {
    min-width: 0;
}
