@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

body {
    /* overflow: hidden; */
}

.cursor-pointer {
    cursor: pointer;
}
/* load */

.parent-loading {
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #FFF;
}

.loading-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 255);
    z-index: 9999;
}

.loading img {
    width: 100%;
}

.loading {
    width: 200px;
    position: relative;
}

.loading-single div {
    width: 30px;
    height: 30px;
    position: relative;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(30deg);
    }
    50% {
        transform: rotate(-30deg);
    }
    75% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
/* close load */

/* global form auth */
.mb-cs-auth {
    margin-bottom: 36px;
}

.desc-normal-page {
    color: #777;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.link-normal-page-bold {
    color:  #003780;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
/* close global form auth */

/* PEUSEUDEUCLASS */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #003780;
}


/* open login style */
.form-group-section {
    display: flex;
}

.bg-auth-form {
    background-image: url('../image/big/bg-auth-cover.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 680px;
    height: 100vh;
    object-fit: cover;
    border: 2px black;
    text-align: center;
}

.back-auth-link {
    color: #292929;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

.bg-content-auth-form {
    margin: 340px auto;
}

.bg-content-auth-form p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.container-cs-form {
    width: 680px;
    height: 100%;
    position: relative;
    margin: 0px auto;
    padding: 56px;
}

.text-auth-normal-heading {
    color: #292929;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 139%; /* 27.8px */
    letter-spacing: 0.1px;
}

.text-auth-bold-heading {
    color: #292929;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 26px */
    letter-spacing: 0.1px;
}

.btn-app-auth-primary{
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08px;
    width: 369px;
    height: 48px;
    border-radius: 26px;
    background: #003780;
    box-shadow: 0px 6px 18px 0px rgba(0, 74, 173, 0.15);
    transition: 1s;
}

.btn-app-auth-primary:hover{
    background: #001d44;
    color: white;
}

.btn-app-auth-primary:focus{
    background: #001d44;
    color: white;
}

.btn-app-auth-white {
    font-size: 16px;
    font-style: normal;
    line-height: 2;
    font-weight: 700;
    letter-spacing: 0.08px;
    color: #003780;
    width: 369px;
    height: 48px;
    border-radius: 26px;
    border: 1px solid #004AAD;
    box-shadow: 0px 6px 18px 0px rgba(0, 74, 173, 0.15);
    transition: 1s;
}

.btn-app-auth-white:hover {
    color: white;
    background: #003780;
    border: 1px solid white;
    box-shadow: 0px 6px 18px 0px rgba(0, 74, 173, 0.15);
}

.btn-app-auth-white:focus {
    color: white;
    background: #003780;
    border: 1px solid white;
    box-shadow: 0px 6px 18px 0px rgba(0, 74, 173, 0.15);
}

.btn-app-auth-white:focus-visible {
    color: white;
    background: #003780;
    border: 1px solid white;
    box-shadow: 0px 6px 18px 0px rgba(0, 74, 173, 0.15);
}

.layout-auth {
    width: 374px;
    margin: 0px auto;
}

.group-content-input-auth {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control-cs-auth {
    border: 0;
    color:  #838383;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    padding: 5px;
    height: 31px;
    border-radius: 0px;
    border-bottom: 1px solid #AEAEAE;
}

.form-control-cs-auth:focus-visible {
    color:  #838383;
    font-size: 16px;
    font-style: normal;
    background-color: var(--bs-body-bg);
    border-bottom: 2px solid #003780;
    outline: 0;
    box-shadow: none;
}

.form-control-cs-auth:focus {
    color:  #838383;
    font-size: 16px;
    font-style: normal;
    background-color: var(--bs-body-bg);
    border-bottom: 2px solid #003780;
    outline: 0;
    box-shadow: none;
}

.icon-password-input {
    position: absolute;
    right: 10px;
    color: #9C9C9C;
}
/* close login style */

/* open otp style */
.form-control-otp-aut {
    width: 67px;
    height: 67px;
    font-size: 30px;
    text-align: center;
    border-radius: 8px;
    background:  #F9F9F9;
    border: 0px;
    color: #004AAD;
}

.icon-otp-message {
    margin-left: 100px;
    margin-right: 10px;
}

.message-runtime-otp {
    color:#555;
    font-size: 16px;
    font-style: normal;
    width: 215px;
    font-weight: 400;
}

.timing-otp-auth {
    color:#003780;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}
/* close otp style */

.modal-text {
    color: #777;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
}

/* media responsive */
@media only screen and (max-width: 1200px){
    .form-group-section {
        display: block;
    }

    .icon-otp-message {
        margin-left: 0px;
        margin-right: 10px;
    }

    .message-runtime-otp {
        color:#555;
        font-size: 16px;
        font-style: normal;
        width: 215px;
        font-weight: 400;
    }

    .back-auth-link {
        margin-bottom: 100px;
    }

    .layout-auth {
        width: 100%;
    }

    .btn-app-auth-primary {
        width: 100%;
    }

    .btn-app-auth-white {
        width: 100%;
    }

    .container-cs-form {
        width: 100%;
        padding: 20px;
    }

    .bg-auth-form {
        display: none;
    }
}
