body  {
    background-image: url("../assets/images/facility_bg_login.png");
    background-color: #cccccc;
    background-size: cover; 
}
@font-face{
    font-family: 'din';
    src: url('../assets/fonts/Roboto-Light.ttf');
}
.bg_video{
    position: fixed; 
    right: 0; 
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto; 
    z-index: -1000;
    background: url(./assets/img/map55.jpg) no-repeat;
    background-size: cover; 
}
.content_area{
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20%;
    right: 4%;
    z-index: 1000;
    background-color: transparent;
}
.content_logo{
    position: absolute;
    width: 200px;
    height: 150px;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background-color: transparent;
}
.content_code{
    position: absolute;
    width: 200px;
    height: 50px;
    top: 72%;
    right: 7%;
    z-index: 1000;
    background-color: transparent;
}
.content_text{
    position: absolute;
    width: 170px;
    height: 150px;
    top: 0px;
    left: 150px;
    z-index: 1000;
    background-color: #024B97;
}
.content_qrcode{
    position: absolute;
    width: 230px;
    height: 270px;
    top: 40%;
    right: 5%;
    z-index: 1000;
    background-color: rgba(210,105,30, 0.5);
    border-radius: 10px 10px 10px 10px;
}
.eventArea{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: rgba(79, 79, 79, 0.5);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    cursor:pointer;
}
p{
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}
 
.modal-wrapper{
    width:100%;
    height:100%;
    position:fixed;
    top:0; left:0;
    background: rgba(0,0,0,.6);
    visibility:hidden;
    z-index: 9999;
    opacity:0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal-wrapper.open{
    opacity:1;
    visibility:visible;
}

.modal{
    width:300px;
    height:10%;
    display:block;
    margin:50% 0 0 -150px;
    position:relative;
    top:40%; left:50%;
    background:#fff;
    opacity:0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
}

.modal-wrapper.open .modal{
    margin-top:0px;
    opacity:1;
}

.head{
    width:90%;
    height:32px;
    padding:1.5em 2%;
    overflow:hidden;
}

.btn-close{
    width:50px;
    height:30px;
    left: 5px;
    position: absolute;
    top: 5px;
    cursor: pointer;
    font-weight: 500;
}

.btn-next{
    width:50px;
    height:30px;
    right: 15px;
    position: absolute;
    top: 5px;
    cursor: pointer;
    font-weight: 500;
}

.content{
    padding:3%;
}

:where([autocomplete=one-time-code]) {
        --otp-digits: 6;
        --otp-ls: 2ch;
        --otp-gap: 1.25;

        /* private consts */
        --_otp-bgsz: calc(var(--otp-ls) + 1ch);
        --_otp-digit: 0;

        all: unset;
        background: 
        linear-gradient(90deg, 
            var(--otp-bg, #BBB) calc(var(--otp-gap) * var(--otp-ls)),
            transparent 0),
            linear-gradient(90deg, 
            var(--otp-bg, #EEE) calc(var(--otp-gap) * var(--otp-ls)),
            transparent 0
        );
        background-position: calc(var(--_otp-digit) * var(--_otp-bgsz)) 0, 0 0;
        background-repeat: no-repeat, repeat-x;
        background-size: var(--_otp-bgsz) 100%;
        caret-color: var(--otp-cc, #222);
        caret-shape: block;
        clip-path: inset(0% calc(var(--otp-ls) / 2) 0% 0%);
        font-family: ui-monospace, monospace;
        font-size: var(--otp-fz, 1.5em);
        inline-size: calc(var(--otp-digits) * var(--_otp-bgsz));
        letter-spacing: var(--otp-ls);
        padding-block: var(--otp-pb, 1ch);
        padding-inline-start: calc(((var(--otp-ls) - 1ch) / 2) * var(--otp-gap));
        
}

/* For this demo */
label span {
    display: block;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-weight: 500;
    margin-block-end: 1ch;
}

.Input-text {
    display: block;
    margin: 0;
    padding: var(--inputPaddingV) var(--inputPaddingH);
    color: inherit;
    width: 100%;
    font-family: inherit;
    font-size: var(--inputFontSize);
    font-weight: inherit;
    line-height: var(--inputLineHeight);
    border: none;
    border-radius: 0.4rem;
    transition: box-shadow var(--transitionDuration);
}

.Input-text::placeholder {
    color: #B0BEC5;
}

.Input-text:focus {
    outline: none;
    box-shadow: 0.2rem 0.8rem 1.6rem var(--colorPrimary600);
}

.Input-label {
    display: block;
    position: absolute;
    bottom: 50%;
    left: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: var(--inputFontSize);
    font-weight: inherit;
    line-height: var(--inputLineHeight);
    opacity: 0;
    transform: 
        translate3d(0, var(--labelDefaultPosY), 0)
        scale(1);
    transform-origin: 0 0;
    transition:
    opacity var(--inputTransitionDuration) var(--inputTransitionTF),
    transform var(--inputTransitionDuration) var(--inputTransitionTF),
    visibility 0ms var(--inputTransitionDuration) var(--inputTransitionTF),
    z-index 0ms var(--inputTransitionDuration) var(--inputTransitionTF);
}

.Input-text:placeholder-shown + .Input-label {
    visibility: hidden;
    z-index: -1;
}

.Input-text:not(:placeholder-shown) + .Input-label,
.Input-text:focus:not(:placeholder-shown) + .Input-label {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    transform:
    translate3d(0, var(--labelTransformedPosY), 0)
    scale(var(--labelScaleFactor));
    transition:
    transform var(--inputTransitionDuration),
    visibility 0ms,
    z-index 0ms;
}