﻿
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

/* BACKGROUND */
.background {
    position: fixed;
    inset: 0;
    background-image: url('../images/ImageMetro.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -2;
    animation: bgZoom 12s ease-in-out infinite alternate;
}

    .background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(0,0,0,0.25), rgba(0,0,0,0.45) );
        z-index: -1;
    }

@keyframes bgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* LOGIN CONTAINER */
.container {
    width: 255px;
    /*min-height: 455px;*/
    padding: 13px 10px;
    border-radius: 16px;
    background: rgba(7, 20, 43, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 25px rgba(0,140,255,0.10);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: cameraPopup 1.1s cubic-bezier(.17,.89,.32,1.28);
}

/* POPUP EFFECT */
@keyframes cameraPopup {

    0% {
        opacity: 0;
        transform: scale(0.4) translateY(80px);
        filter: blur(15px);
    }

    60% {
        opacity: 1;
        transform: scale(1.03) translateY(-6px);
        filter: blur(0);
    }

    100% {
        transform: scale(1);
    }
}

/* LOGO */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .logo img {
        width: 175px;
        margin-top: 4px;
        /*animation: floatLogo 3s ease-in-out infinite;*/
    }

/* FLOATING EFFECT */
@keyframes floatLogo {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* TITLE */
.title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    margin-top: 6px;
    margin-bottom: 18px;
    position: relative;
}

    /* TITLE LINE */
    .title::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 1px;
       /* background: rgba(255,255,255,0.08);*/
    }

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* INPUT BOX */
.input-box {
    position: relative;
    width: 100%;
}
#DNTCaptchaInputText {
    width:96%;
}
#btnsubmit {
    height:27px!important;width:75%!important;
}
/* ICONS */
.input-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    z-index: 2;
}

    /* INPUT */
    .input-box input.form-control {
        width: 86%;
        height: 26px;
        border-radius: 5px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(255,255,255,0.04);
        padding-left: 28px;
        padding-right: 0px;
        color: white;
        font-size: 11px;
        outline: none;
        transition: all 0.3s ease;
    }

    /* PLACEHOLDER */
    .input-box input::placeholder {
        color: rgba(255,255,255,0.45);
    }

    /* FOCUS */
    .input-box input:focus {
        border-color: #3ea6ff;
        background: rgba(255,255,255,0.08);
        box-shadow: 0 0 10px rgba(62,166,255,0.22);
    }

/* CAPTCHA WRAPPER */
.captcha-wrapper {
    width: 100%;
    margin-top: -2px;
}

    /* FORCE INLINE LAYOUT */
    .captcha-wrapper .dntCaptcha {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px;
        width: 100%;
    }

        /* CAPTCHA IMAGE */
        .captcha-wrapper .dntCaptcha img {
            width: 82px !important;
            height: 32px !important;
            object-fit: contain;
            border-radius: 4px;
            background: transparent !important;
        }

    /* CAPTCHA INPUT */
    .captcha-wrapper input.form-control,
    .captcha-wrapper .text-box,
    #CaptchaInputText {
        flex: 1 !important;
        min-width: 0 !important;
        height: 32px !important;
        border-radius: 6px !important;
        border: 1px solid rgba(255,255,255,0.16) !important;
        background: rgba(255,255,255,0.05) !important;
        color: white !important;
        font-size: 11px !important;
        padding: 0 8px !important;
        outline: none !important;
        box-shadow: none !important;
    }

    /* PLACEHOLDER */
    .captcha-wrapper input::placeholder {
        color: rgba(255,255,255,0.5) !important;
    }

    /* REFRESH BUTTON */
    .captcha-wrapper .fa-redo,
    .captcha-wrapper .btn-sm {
        font-size: 13px !important;
        color: rgba(255,255,255,0.85) !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 16px !important;
        cursor: pointer;
        flex-shrink: 0;
    }

    /* REMOVE EXTRA PREPEND */
    .captcha-wrapper .input-group-prepend,
    .captcha-wrapper .form-group-text {
        display: none !important;
    }

/* HIDE DEFAULT CAPTCHA INLINE ERROR */
.dntCaptcha .text-danger,
.dntCaptcha .field-validation-error,
.dntCaptcha span.text-danger,
.dntCaptcha .captcha-validation-message {
    display: none !important;
}

/* REMOVE OVERFLOW ISSUES */
.captcha-wrapper * {
    box-sizing: border-box;
}
/* BUTTON */
.btn-primary,
button {
    width: 100%;
    height: 38px;
    border: none;
    border-radius: 6px;
    background: linear-gradient( 180deg, #1592ff, #006fe6 );
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
}

    /* BUTTON HOVER */
    .btn-primary:hover,
    button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(0,140,255,0.30);
    }

/* FOOTER */
#pageFooter {
    margin-top: 0px;
}

    #pageFooter p {
        color: rgba(255,255,255,0.55);
        font-size: 9px;
        line-height: 1.6;
    }

/* ERROR */
.text-danger {
    color: #ffb3b3;
    font-size: 10px;
    margin-top: 4px;
    text-align: left;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .container {
        width: 84%;
        min-height: auto;
        padding: 20px;
    }

    .logo img {
        width: 165px;
    }
}

/* CAPTCHA ERROR */
.captcha-error-message {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #ff6b6b;
    font-size: 11px;
    padding-left: 2px;
}

.text-danger {
    color: white;
    font-size: 0.9em;
    /*font-weight:600;*/
    margin-top: 5px;
    margin-bottom: 0px;
    display: block;
}
