*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* global styles start */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

button[type="submit"]
{
    background: #030F89;
    color: #FFFFFF;
}

button[type="submit"]:hover
{
    background: #FFE500;
    color: #030F89;
}

button[disabled], button[disabled]:hover
{
    background: #6D6E70;
    color: #282828;
    opacity: 0.2;
}

.fa-circle-xmark
{
    position: absolute;
    top: 6px;
    right: 6px;
    color: #FFFFFF;
    font-size: 26px;
    cursor: pointer;
}

.fa-circle-xmark:hover
{
    opacity: 0.6;
}
/* global styles end */

/* login page style start */
.login-container
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.login-content
{
    background: #ECF2FA;
    height: 100vh;
    width: 25%;
    max-height: 100%;
    max-width: 90%;
    color: #030F89;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem 12px 1rem;
    gap: 1rem;
    box-shadow: 1px 2px 6px 1px rgba(159,159,163,0.2), 1px 1px 6px 1px rgba(159,159,163,0.3);
    overflow-y: auto;
}

.login-child
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-title-logo, .input-field
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.brand-title-logo img
{
    width: 70%;
}

.title-page
{
    background: #030F89;
    width: 200px;
    max-width: 100%;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    margin: auto;
    padding: 6px 12px;
    border-radius: 18px;
}

.input-field
{
    background: #FFFFFF;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.input-field input, .input-field select
{
    background: #FFFFFF;
    width: 100%;
    padding: 12px 6px;
    color: #282828;
    font-size: 14px;
    border: none;
    outline: none;
}

.input-field:has(input:focus, select:focus)
{
    border-bottom: 2px solid #030F89;
}

#password_visibility
{
    cursor: pointer;
}

.login-content button
{
    background: #030F89;
    width: 100%;
    color: #FFFFFF;
    font-weight: bold;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.login-msg
{
    color: #FFFFFF;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    margin: auto;
    padding: 12px 16px;
    animation: msgEffects 0.5s;
}

.success-msg
{
    background: #030F89;
}

.error-msg
{
    background: #D10000;
}

@keyframes msgEffects
{
    from { opacity: 0; translate: 50px 0; }
    to { opacity: 1; translate: 0 0; }
}

@keyframes msgEffectsClose
{
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

.login-txt-content
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    color: #282828;
}

.login-txt
{
    color: #6d6e70;
}

.login-txt a
{
    color: #0458E0;
    font-weight: bold;
}

.login-bottom-child
{
    width: 100%;
    margin-top: 30px;
    font-size: 14px;
    color: #D7D7D8;
}

.login-bottom-child-info
{
    margin-top: 15px;
    font-size: 10px;
    color: #9F9FA3;
    line-height: 1.4;
}

.login-bg
{
    background: url('../images/gaprs-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 75%;
}

.guide-container
{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.guide-container img
{
    width: 600px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}
/* login page style end */

/* recovery pages style start */
.recovery-container
{
    background: #ECF2FA;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-y: auto;
}

.recovery-content
{
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.recovery-content img
{
    width: 70%;
    margin-top: 60px;
}

.recovery-child
{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 30px;
}

.recovery-title, #auth_cd
{
    color: #030F89;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.recovery-child button[type='button']
{
    background: #FFFFFF;
    width: 350px;
    max-width: 100%;
    padding: 14px 16px;
    color: #030F89;
    font-size: 18px;
    font-weight: bold;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
}

.recovery-child button[type='button']:hover
{
    background: #030F89;
    color: #FFFFFF;
}

.recovery-child button[type='submit']
{
    width: 100%;
    font-weight: bold;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.recovery-child p
{
    font-size: 16px;
    color: #9F9FA3;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

.recovery-child span
{
    color: #030F89;
    font-weight: bold;
    font-size: 16px;
}

.recovery-txt
{
    width: 100%;
    color: #282828;
    line-height: 1.2;
}

.recovery-footer
{
    width: 100%;
    padding: 1rem 0;
    text-align: center;
}

.recovery-footer span
{
    font-size: 11px;
    color: #9F9FA3;
}
/* recovery pages style end */

/* main page style */
.welcome-container
{
    background: rgba(3, 15, 137, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}

.welcome-content
{
    max-height: 100%;
    max-width: 100%;
    color: #FFFFFF;
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: slideToBottom 1s ease-out;
    overflow-y: auto;
}

.welcome-content img
{
    width: 300px;
}

.welcome-content button
{
    background: #FFE500;
    color: #030F89;
    font-size: 36px;
    font-weight: bold;
    padding: 20px;
    border: none;
    border-radius: 5px;
}

.welcome-content button:hover
{
    background: #FFFFFF;
    color: #030F89;
}

@keyframes slideToBottom
{
    from
    {
        transform: translateY(-300px);
        opacity: 0.3;
    }
    to
    {
        transform: translateY(0);
    }
}

.top-container
{
    background: #FFFFFF;
    width: 100%;
    height: 70px;
}

.top-content, .nav-menu-content, .main-content, .footer-content
{
    width: 1366px;
    max-width: 90%;
    margin: 0 auto;
}

.top-content
{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.top-child
{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-child img
{
    width: 250px;
    cursor: pointer;
}

.top-child span
{
    color: #6D6E70; /* 9F9FA3 / 6D6E70 */
    font-size: 14px;
}

.top-child i
{
    display: none;
    color: #030F89;
    font-size: 26px;
    cursor: pointer;
}

.top-child a
{
    color: #6D6E70; /* 9F9FA3 / 6D6E70 */
    font-size: 18px;
}

.main-container
{
    background: #FFFFFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-container
{
    background: #ECF2FA;
    width: 100%;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    left: 0;
    display: block;
    z-index: 900;
}

.nav-menu-content
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-menu-child
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.nav-menu-child a
{
    color: #6D6E70;
    font-size: 16px;
    text-decoration: none;
}

.nav-menu-child .active
{
    color: #030F89;
    font-weight: bold;
}

.main-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
}

.profile-content
{
    width: 100%;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1rem 0;
    border-bottom: 2px solid #ECF2FA;
}

.profile-child
{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.profile-picture
{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #EFEFEF;
}

.profile-info h1
{
    display: block;
    color: #030F89;
    font-size: 32px;
    margin-bottom: 1rem;
}

.profile-info span
{
    display: block;
    color: #6D6E70;
    font-size: 16px;
}

.profile-banner-img
{
    width: 400px;
    max-width: 100%;
}

.main-child
{
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.platform-header
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-header h1
{
    background: #ECF2FA;
    padding: 12px;
    color: #030F89;
    font-size: 26px;
    font-weight: bold;
}

.platform-header h2
{
    color: #030F89;
    font-size: 26px;
    font-weight: bold;
}

.platform-header p
{
    color: #6D6E70;
    font-size: 16px;
    font-style: italic;
}

.platform-header p b
{
    color: #030F89;
}

.footer-content
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 1rem 0;
}

.footer-child
{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-child span
{
    color: #6D6E70;
    font-size: 14px;
}

.soc-med
{
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-child a
{
    color: #030F89;
    font-size: 16px;
    text-decoration: none;
}

._df_book
{
    width: 800px;
    max-width: 90%;
    margin: 0 auto;
}

#annual-report-dflip .df-ui-btn
{
    display: none !important;
}

#ga-notice-dflip .df-ui-btn:before
{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

#ga-notice-dflip .df-ui-prev:before
{ background-image: url("../svg/caret-left-solid-full.svg"); }

#ga-notice-dflip .df-ui-next:before
{ background-image: url("../svg/caret-right-solid-full.svg"); }

#ga-notice-dflip .df-ui-zoomin:before
{ background-image: url("../svg/magnifying-glass-plus-solid-full.svg"); }

#ga-notice-dflip .df-ui-zoomout:before
{ background-image: url("../svg/magnifying-glass-minus-solid-full.svg"); }

#ga-notice-dflip .df-ui-fullscreen:before
{ background-image: url("../svg/compress-solid-full.svg"); }

#ga-notice-dflip .df-ui-thumbnail:before
{ background-image: url("../svg/bars-solid-full.svg"); }

#ga-notice-dflip .df-ui-outline:before
{ background-image: url("../svg/border-all-solid-full.svg"); }

#ga-notice-dflip .df-ui-download:before
{ background-image: url("../svg/download-solid-full.svg"); }

#ga-notice-dflip .df-ui-print:before
{ background-image: url("../svg/print-solid-full.svg"); }

#ga-notice-dflip .df-ui-share:before
{ background-image: url("../svg/share-solid-full.svg"); }

#ga-notice-dflip .df-ui-more:before
{ background-image: url("../svg/ellipsis-vertical-solid-full.svg"); }

.option-container
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
}

.option-container form
{
    background: #ECF2FA;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 12px 0 rgba(0, 0, 0, 0.19);
}

.option-container form img
{
    width: 100%;
    min-height: 200px;
    margin-bottom: 14px;
    border-radius: 10px;
}

.details-container
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    gap: 1.5rem;
}

.details-content
{
    display: flex;
    flex-direction: column;
    color: #030F89;
    gap: 6px;
}

.details-content span:nth-child(1)
{
    font-weight: bold;
}

.details-content span:nth-child(2)
{
    font-size: 11px;
    font-style: italic;
}

.details-content label
{
    color: #030F89;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.details-content select
{
    width: 100%;
    padding: 12px 14px;
    border: none;
    outline: none;
    border-bottom: 1px solid #030F89;
}

.details-content select:focus
{
    border-bottom: 2px solid #030F89;
}

.details-content button
{
    font-weight: bold;
    padding: 12px 14px;
    border: none;
    outline: none;
    border-radius: 6px;
}

/* confirmation page style start */
.confirmation-content
{
    background: #ECF2FA;
    width: 800px;
    max-width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 12px;
}

.confirmation-header
{
    background: #030F89;
    width: 100%;
    padding: 12px 14px;
    color: #FFFFFF;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
}

.confirmation-child
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.confirmation-txt
{
    flex: 1 0 300px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.confirmation-txt img
{
    width: 100%;
}

.confirmation-txt h3
{
    color: #030F89;
    font-size: 21px;
    font-weight: bold;
}

.confirmation-txt p
{
    color: #6D6E70;
    font-size: 16px;
}

.confirmation-txt span
{
    color: #282828;
    font-size: 18px;
}

.confirmation-txt h1
{
    color: #030F89;
    font-size: 18px;
    align-self: center;
}

.confirmation-child button
{
    background: none;
    flex: 1;
    color: #030F89;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 14px;
    border: 1px solid #030F89;
    outline: none;
    border-radius: 6px;
}
/* confirmation page style end */

/* registered style start */
@keyframes sliderToBottom
{
    from
    {
        opacity: 0.5;
        margin-top: -300px;
    }
}

.registered-header
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 20px;
    color: #030F89;
    text-align: center;
    font-style: italic;
    animation: sliderToBottom 1.3s ease-in-out;
}

.registered-header h1
{
    font-size: 36px;
}

.registered-header span
{
    color: #6D6E70;
    font-size: 18px;
}

.registered-header span b
{
    color: #030F89;
}

.registered-header p
{
    background: #FFE500;
    width: 100%;
    color: #030F89;
    font-weight: bold;
    padding: 12px;
}

.registered-container
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.registered-content
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.registered-child
{
    flex: 1 0 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.registered-child h2
{
    color: #030F89;
    font-size: 26px;
}

.registered-child-card
{
    background: #ECF2FA;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    border-radius: 12px;
}

.registered-child-item
{
    flex: 1 0 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registered-child-item img
{
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
}

.registered-child-item h3
{
    color: #6D6E70;
    font-size: 14px;
    font-weight: 500;
}

.registered-child-item h3 b
{
    display: block;
    color: #030F89;
    font-size: 21px;
}

.registered-child-item span
{
    color: #6D6E70;
    font-size: 14px;
}

.registered-child-item span b
{
    display: block;
    color: #030F89;
    font-size: 18px;
}

.registered-child-item i
{
    color: #0458E0;
    font-size: 200px;
    text-align: center;
    cursor: pointer;
}

.img-swiper
{
    width: 100%;
    border-radius: 1rem;
}

.img-swiper-slide
{
    position: relative;
}

.img-swiper-slide img
{
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}
/* registered style end */

#loading-popup
{
    background: rgba(3,15,137,0.8);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#loading-popup img
{
    width: 100px;
}

.walking-migs
{
    width: 100px;
    border: 10px solid #030F89;
    border-radius:  500px 150px 500px 150px;
}

.loading-screen
{
    width: 200px;
}

@media only screen and (max-width: 1366px)
{
    /* login page style start */
    .login-container
    {
        background: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .login-content
    {
        height: 90%;
        width: 450px;
        max-width: 100%;
        border-radius: 16px;
    }

    .login-bg
    {
        display: none;
    }
}

@media only screen and (max-width: 1200px)
{
    .option-container form
    {
        background: #FFFFFF;
        color: #030F89;
        width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 10px;
        gap: 20px;
        cursor: pointer;
    }

    .option-container form img, .details-container
    {
        width: 100%;
    }
}

@media only screen and (max-width: 800px)
{
    /* login page style */
    .login-content
    {
        height: 100%;
        width: 100%;
        box-shadow: none;
        border-radius: none;
    }

    .login-bottom-child
    {
        margin-top: 120px;
    }

    .top-child i
    {
        display: block;
    }

    .top-child span, .nav-menu-container
    {
        position: relative;
        display: none;
    }

    .nav-menu-container.is-open
    {
        display: block;
    }

    .nav-menu-content, .nav-menu-child
    {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .profile-content
    {
        justify-content: center;
    }

    .profile-child
    {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .welcome-container
    {
        background: rgba(3, 15, 137, 0.9);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .welcome-content
    {
        max-height: 100%;
        max-width: 100%;
        color: #FFFFFF;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        animation: slideToBottom 1s ease-out;
        overflow-y: auto;
    }

    .welcome-content img
    {
        width: 20%;
    }

    .welcome-content button
    {
        background: #FFE500;
        color: #030F89;
        font-size: 26px;
        font-weight: bold;
        padding: 16px;
        border: none;
        border-radius: 5px;
    }

    .welcome-content button:hover
    {
        background: #FFFFFF;
        color: #030F89;
    }

    .confirmation-content
    {
        text-align: center;
    }

    .option-container
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        border-radius: 10px;
        gap: 30px;
    }

    .option-container form
    {
        background: #FFFFFF;
        color: #030F89;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 10px;
        gap: 20px;
        cursor: pointer;
    }

    .option-container form img
    {
        width: 100%;
        border-radius: 10px;
    }

    .details-container
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        gap: 15px;
    }

    .registered-content
    {
        flex-direction: column;
    }

    .registered-child
    {
        width: 100%;
        flex: 1;
        gap: 12px;
    }

    .registered-child-item img
    {
        width: 100%;
    }
}

@media only screen and (max-width: 600px)
{
    /* login page style */
    .login-content
    {
        background: #ECF2FA;
        color: #030F89;
        width: 100%;
        max-height: 100%;
        overflow-y: auto;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* home page style */
    .welcome-container
    {
        background: rgba(3, 15, 137, 0.9);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .welcome-content
    {
        max-height: 100%;
        max-width: 100%;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        animation: slideToBottom 1s ease-out;
        overflow-y: auto;
    }

    .welcome-content img
    {
        width: 70%;
        margin: 5px 0;
    }

    .welcome-content button
    {
        background: #FFE500;
        color: #030F89;
        font-size: 26px;
        font-weight: bold;
        padding: 16px;
        border: none;
        border-radius: 5px;
    }

    .welcome-content button:hover
    {
        background: #FFFFFF;
        color: #030F89;
    }

    /* main page style */
    .option-container
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 10px;
        border-radius: 10px;
        gap: 30px;
    }

    .option-container form
    {
        background: #FFFFFF;
        color: #030F89;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 10px;
        gap: 20px;
        cursor: pointer;
    }

    .option-container form img
    {
        width: 100%;
        border-radius: 10px;
    }

    .details-container
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        gap: 15px;
    }
}