@import 'shared.css';
/*---Login---*/
.login-container {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .1)), url("../img/img-login-poster.jpg") no-repeat center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

    .login-container > .header {
        padding-left: max(4.8rem,4.1667vw);
        padding-right: max(4.8rem,4.1667vw);
        height: 88px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .login-container > .header > img {
            width: 207.31px;
            height: 50px;
        }

        .header > .contact {
            padding: 8px 20px;
            /* background: #fff; */
            color: var(--theme-color);
            border: 1px solid var(--theme-color);
            font-size: .9em;
            border-radius: 30px;
            transition-duration: .3s;
        }

        .header > .contact:hover {
            cursor: pointer;
            background: var(--theme-color);
            color: #fff;
        }

.login-container > .main {
    margin: 0 auto;
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 500px;
}

.main > .container {
    width: 380px;
    padding: 50px 40px 50px 40px;
    background: rgba(255,255,255,.75);
    box-sizing: border-box;
    box-shadow: rgba(255, 255, 255, 0.7) 0px 5px 8px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container > .title {
    text-align: left;
    font-size: 2em;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
}

.body-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .body-container > .selection-group {
        font-size: 1.3em;
        color: #000;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 50px;
    }

.selection-group > .line {
    width: 1px;
    height: 15px;
    background: rgba(0,0,0,.15);
    margin: 0 5px;
    display: none;
}

.selection-group > .selection-item {
    padding: 10px 20px;
}

    .selection-group > .selection-item.hide {
        display: none;
    }

.selection-group > .selected {
    color: var(--theme-color);
    font-weight: 600;
    /* background: rgba(255, 255, 255, 0.7); */
    font-family: 'HanwhaGothicB', 'HanwhaGothicL', Arial, sans-serif;
}

.selection-group > .selection-item:hover {
    cursor: pointer;
}

.login-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-body > .login-row, .login-body > .login-email-row {
    width: 100%;
    height: 48px;
    /*padding: 8px;*/
    border-radius: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,.7);
    /* background: #e7e9eb; */
    box-sizing: border-box;
}

.login-body > .login-row:first-child, .login-body > .login-email-row:first-child {
    margin: 10px 0;
}

.login-body > .login-row:nth-child(2), .login-body > .login-email-row:nth-child(2) {
    margin-top: 20px;
}

.login-body > .login-row:hover {
    border-bottom: 1px solid rgba(0,0,0,.9);
}

.login-body > .login-row > img {
    width: 34px;
}

.login-body > .login-row > input {
    height: 100%;
    width: 280px;
    line-height: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: 0;
    outline: none;
    offset: 0;
    outline-offset: 0;
    font-size: 1.2em;
    color: #11192d;
    background: transparent;
}

.login-body > .login-email-row > input {
    height: 100%;
    line-height: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: 0;
    outline: none;
    offset: 0;
    outline-offset: 0;
    font-size: 1.2em;
    color: #11192d;
    background: transparent;
}

.email {
    width: 100%;
}

.otp {
    width: 180px;
}

.login-body > .login-email-row > .otp-body {
    position: relative;
    width: 70px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9em;
    font-weight: 600;
    color: #11192d;
    background: rgba(255,255,255,.1);
    border-radius: 5px;
}

.loading {
    transform: translate(-50%, -50%);
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--theme-color);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
}

.login-body > .login-email-row > .otp-body > .email-otp {
    width: 90px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9em;
    font-weight: 600;
    color: var(--theme-color);
    border-radius: 5px;
}

.login-body > .login-email-row > .otp-body > .email-otp:hover {
    background: rgba(255,255,255,.5);
    cursor: pointer;
}


.forgot-password-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.forgot-password-row > a {
    padding: 10px 5px;
    text-decoration: none;
    color: #11192d;
    font-size: .9em;
}

.forgot-password-row > a:hover {
    cursor: pointer;
    color: #000;
}

.error-row {
    width: 96%;
    padding: 7px 0;
    min-height: 30px;
    display: flex;
    color: #960101;
    font-size: 1em;
    justify-content: flex-start;
    align-items: center;
}

.error-row > img {
    width: 18px;
    margin-right: 8px;
}
.login-body > div {
    width: 100%;
}
.login-body > div > button[type='submit'], .login-body > div > .submitDiv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 7px;
    border: 0;
    outline: none;
    offset: 0;
    outline-offset: 0;
    font-size: 1.2em;
    background: var(--theme-color-75);
    color: #fff;
    transition-duration: .3s;
}

.submitDiv > .loading {
    margin-right: 10px !important;
}

.login-body > div > button[type='submit']:hover {
    cursor: pointer;
    letter-spacing: 1.1px;
}

.footer {
    font-size: .8em;
    color: #555;
    text-align: center;
    padding: 20px 0;
}

.main > img {
    height: 50%;
    width: 50%;
}

/*Shake Content Animation*/
.shake-animation {
    animation: contentShake .5s ease-in-out;
    -moz-animation: contentShake .5s ease-in-out;
}
@keyframes contentShake {
    12.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    37.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    62.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    87.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    100% {
        transform: translateX(0);
    }
}
@-moz-keyframes contentShake {
    12.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    37.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    62.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    87.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    100% {
        transform: translateX(0);
    }
}
/*Shake Content Animation End*/

/*Loading Screen*/
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}

#loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid var(--theme-color); /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*Loading Screen*/



/*Popup window*/
.dialog-box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 10001;
}

.one-msg-container {
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 500px;
    max-height: 600px;
    background: #fff;
    border-radius: 10px;
}

.one-msg-Title {
    padding: 25px 15px;
    font-size: 1em;
    font-weight: 600;
}

.one-msg-box {
    width: 400px;
}

    .one-msg-box > span {
        font-size: 1.1em;
        font-weight: 500;
        word-break: break-word;
    }

.one-msg-box > ul {
    list-style: none;
}

.one-msg-box > ul > li {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: .9em;
    background: rgba(230,230,230,.4);
    margin: 10px 0;
}

.one-btn-box {
    margin-top: 15px;
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ok-btn {
    width: 120px;
    height: 36px;
    font-size: .9em;
    font-weight: 500;
    color: #fff;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .5s;
    border-radius: 20px;
    margin: 20px 50px;
}

    .ok-btn:hover {
        cursor: pointer;
        background: var(--theme-color);
        letter-spacing: 1.05px;
    }
/*Popup window*/

/*Content up*/
.animation-response-content {
    display: flex;
    animation: response-content-up .8s forwards;
    -webkit-animation: response-content-up .8s forwards;
}

@keyframes response-content-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@-moz-keyframes response-content-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
/*Content up*/

/*---Login end---*/

/*---Find/reset password---start*/
.login-container > .main-reset {
    border-top: 1px solid var(--lightgray-color-50);
    width: 100%;
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.main-reset > .container-reset {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.container-reset > .title {
    padding: 40px 0 30px 0;
    font-size: 1.5em;
    font-weight: bold;
}

.container-reset > .info {
    font-size: 1em;
    padding: 0 0 10px 0;
    display: flex;
    align-items: center;
}

.container-reset > .info > img {
    margin-right: 8px;
    height: 25px;
}

.body-container > .width {
    width: 370px !important;
}

.login-row > .width {
    width: 100% !important;
}

.login-body > .login-row-password {
    width: 100%;
    padding: 5px 10px 20px 5px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.fa-circle {
    border-radius: 5px;
    border: none;
}

.fa-check {
    background: #02b502;
}

.fa-ico {
    width: 10px;
    height: 10px;
}

.login-row-password > ul {
    list-style: none;
    font-size: 1em;
}

.login-row-password > ul > li {
    padding: 5px 0;
}

.progress-bar-danger {
    background-color: #e90f10;
}

.progress-bar-weak {
    background-color: #ff6500;
}

.progress-bar-warning {
    background-color: #ffad00;
}

.progress-bar-success {
    background-color: #02b502;
}

.eight-character, .low-upper-case, .one-number, .one-special-char {
    display: flex;
    align-items: center;
}

/*---Find/reset password---end*/

/*---Home page-------------start*/
.main-reset > .banner {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 260px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.75)), url('img/img-banner2.svg');
    background-size: cover;
    background-position: center;
}

.main-reset > .banner > .welcome {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0 60px 0;
}

.main-reset > .banner > .welcome > small {
    color: #bbb;
    font-size: 1.8em;
}

.main-reset > .banner > .welcome > .person-name {
    color: #fff;
    font-size: 2.6em;
    padding: 5px 15px;
}

.container-search {
    width: 100%;
    display: flex;
    justify-content: center;
}

.margin-top {
    margin-top: -40px;
}

.body-container > .search-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-container > .search-body > .search-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    background: var(--theme-color);
    border-radius: 50px;
}

.body-container > .search-body > .search-row > input[type='text'] {
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 24px;
    border: 0;
    outline: none;
    offset: 0;
    outline-offset: 0;
    font-size: 1.5em;
    background: transparent;
    color: #fff;
    transition-duration: .3s;
}

.body-container > .search-body > .search-row > input[type='text']::placeholder {
    color: #ddd;
  }

.body-container > .search-body > .search-row > img {
    width: 40px;
    height: 40px;
}

.linkBox {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 75%;
}

.linkBox > .linkGroup {
    margin: 1rem;
    width: 300px;
}

.linkBox > .linkGroup > .linkGroupHeader {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    font-family: "HanwhaGothicR";
}

.linkBox > .linkGroup > ul {
    margin-top: 10px;
    list-style: none;
}

.linkBox > .linkGroup > ul > li {
    padding: 5px 0;
}

.linkBox > .linkGroup > ul > li > a {
    text-decoration: none;
    color: #000;
    font-size: 1.1em;
    position: relative;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
}

.linkBox > .linkGroup > ul > li > a:hover {
    color: black;
}

.linkBox > .linkGroup > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: var(--theme-color);
    transition: width 0.3s ease-in-out;
}

.linkBox > .linkGroup > ul > li > a:hover::after {
    width: 100%;
}

.link-highlight {
    background-color: var(--linkmenuhighlight-color);
}
/*---Home page-------------end*/
@media (max-width: 400px) {
    .login-container > .header {
        padding: 0 10px !important;
    }
    .login-container > .header > img {
        height: 30px !important;
        width: 124.39px !important;
    }
    .header > .contact {
        padding: 5px 8px !important;
        font-size: .6em !important;
    }
    .login-container > .main {
        width: 90%;
    }
    .main > .container {
        min-width: none !important;
        padding: 30px 20px;
    }
    .login-body > .login-row > input {
        width: 100%;
    }
    .error-message {
        font-size: .8em;
    }
    .footer {
        font-size: .6em;
    }
    .modal-content {
        width: calc(calc(100%) - 30px) !important;
    }
    .modal-content {
        padding: 10px !important;
    }
    .one-msg-box {
        width: 96% !important;
        font-size: .9em;
    }
}
@media (max-width: 768px) {
    .login-container > .header {
        padding: 0 1.5rem;
    }

    .login-container > .header > img {
        width: 165.84px;
        height: 40px;
    }

    .header > .contact {
        padding: 7px 15px;
        font-size: .8em;
    }

    .main > .container {
        margin-top: 70px !important;
    }

    .main-reset > .container-reset {
        width: 100%;
        align-items: center;
    }

    .container > .title {
        font-size: 1.4em !important;
    }

    .container-reset > .title {
        width: 96%;
        text-align: left;
        font-size: 1.2em !important;
    }

    .container-reset > .info {
        width: 96%;
    }

    .container-reset > .body-container {
        align-items: center;
    }

    .body-container > .selection-group {
        font-size: 1.1em !important;
    }

    .login-body > .login-row, .login-body > .login-email-row {
        height: 40px;
    }

    .login-body > .login-row > img {
        width: 28px;
    }

    .login-body > .login-row > input {
        font-size: 1em !important;
    }

    .login-body > div > button[type='submit'], .login-body > div > .submitDiv {
        height: 40px;
        font-size: 1em !important;
    }

    .login-body > .login-email-row > input {
        font-size: 1em !important;
    }

    .one-msg-container {
        width: calc(calc(100%) - 30px);
    }

    .one-msg-box {
        width: calc(90%);

    }

    .linkBox {
        width: 90% !important;
    }

    .linkBox > .linkGroup {
        width: 280px !important;
    }

    .main-reset > .banner > .welcome > small {
        font-size: 1.1em !important;
    }

    .main-reset > .banner > .welcome > .person-name {
        font-size: 1.4em !important;
    }

    .body-container > .search-body > .search-row > input[type='text'] {
        height: 34px !important;
        width: 300px !important;
        font-size: 1.2em !important;
    }

    .body-container > .search-body > .search-row > img {
        width: 30px !important;
        height: 30px !important;
    }

    .main-reset > .banner {
        min-height: 180px !important;
    }

    .linkBox > .linkGroup > .linkGroupHeader {
        font-size: 1.1em !important;
    }

    .linkBox > .linkGroup > ul > li > a {
        font-size: 1em !important;
    }

    .margin-top {
        margin-top: -32px !important;
    }
    .modal-content {
        width: 99%;
    }
}

@media (max-width: 1050px) {
    .login-container > .header {
        padding: 0 30px;
    }

    .login-container > .main {
        align-items: flex-start;
    }

    .main > .container {
        margin-top: 50px;
        box-shadow: none !important;
    }

    .main > img {
        display: none;
    }

    .linkBox {
        width: 85%;
    }

    .main-reset > .banner > .welcome > small {
        font-size: 1.3em;
    }

    .main-reset > .banner > .welcome > .person-name {
        font-size: 1.8em;
    }

    .body-container > .search-body > .search-row > input[type='text'] {
        height: 40px;
    }

    .margin-top {
        margin-top: -35px;
    }

    .modal-content {
        width:90%;
    }

    .video-container {
        background: #f9f9f9 !important;
    }
}

@media (max-width: 1600px) {
    .container > .title {
        font-size: 1.5em;
    }

    .body-container > .selection-group {
        font-size: 1.2em;
    }

    .login-body > .login-row > input {
        font-size: 1.1em;
    }

    .login-body > div > button[type='submit'], .login-body > div > .submitDiv {
        font-size: 1.1em;
    }

    .login-body > .login-email-row > input {
        font-size: 1.1em;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/*login page with video*/
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
  #background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background */
  }