<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/**************************************** BASE CUSTOMIZED ****************************************/
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
	box-sizing: inherit;
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}
body {
    font-family: 'Exo 2', Garamond, Helvetica, Sans-Serif;
    color: #e6e6e6;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight:400;
    
    width: 100%;
    max-width: 100%;
    height: 100vh;
    
    background-color: #143d6c;
    overflow: hidden;

    background: url('../img/loginbackground.jpg');
	background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
}
::-webkit-scrollbar {
    width: 15px;
    background: inherit;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 15px #e6e6e6;
    box-shadow: inset 0 0 15px #e6e6e6; 
    border-radius: 20px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(36, 109, 194, .5);
    border-radius: 20px;
}
@media only screen and (max-width: 64em) { /*1021px*/
    html {
        font-size: 58%;
    }
    /*body { background: #103156; }*/
}
@media only screen and (max-width: 48em) { /*768px*/
    html {
        font-size: 54%;
    }
}
@media only screen and (max-width: 35em) { /*560px*/
    html {
        font-size: 50%;
    }
}
/**************************************** GENERIC ****************************************/
.logo {
    width: 22rem;
}
.main-panel{
    display: flex;
    height: 95vh;
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 5vh;
    background-color: rgba(16, 49, 86, .85);
}
.footer &gt; span {
    font-weight: 700;
    font-size: inherit;
    background-color: transparent; /*Fallback*/
    color: inherit; /*Fallback*/
    background: linear-gradient(to right, #ffe4b3, #ffc14d, #ffa600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
::-webkit-input-placeholder {
    color: #e6e6e6;
    font-size: inherit;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #e6e6e6;
    font-size: inherit;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
    opacity: 1;
}
::-ms-input-placeholder {
    color: #e6e6e6;
    font-size: inherit;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
    opacity: 1;
}
::placeholder {
    color: #e6e6e6;
    font-size: inherit;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
    opacity: 1;
}
.requiredValidator {
    position: absolute;
    top: -.5rem;
    right: 2rem;
    color: #ff3333;
    letter-spacing: 1px;
}
/**************************************** MAIN_PANEL_LEFT ****************************************/
.main-panel-left {
    /* as item of .main-panel */
    flex: 0 0 30%;
    border-right: 1px solid rgba(255,255,255,.4);
    border-bottom: 1px solid rgba(255,255,255,.4);
    /* as container */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(16, 49, 86, .85);
}
.main-panel-left-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    width: 100%;
}
.aboutUs-panel {
    display: flex;
    height: 15vh;
    width: 100%;
    justify-content: center;
}
.aboutUs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
    max-width: 45rem;
    height: 5rem;
    color: inherit;
    cursor: pointer;
    box-shadow: inset 0px 0px 8px #ffc14d;
    border-radius: 7px;
    text-shadow: 0px 0px 4px #000;
}
.aboutUs-indicator {
    opacity: 0;
    padding-left: 0;
    transition: all .2s ease-in-out;
}
.aboutUs:hover .aboutUs-indicator,
.aboutUs:focus .aboutUs-indicator {
    opacity: 1;
    color: #ffc14d;
    padding-left: .5rem;
}
.aboutUs-icon {
    padding-right: 1rem;
    font-size: 2.5rem;
}

.steps {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    padding-top: 5rem;
    height: 70vh;
    width: 85%;
    max-width: 45rem;
}
.step-panel {
    /* as container */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(12, 36, 65, .4);
    margin-bottom: 5rem;
    border-radius: 7px;
    padding: 2rem 1rem;
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: -5px 15px 18px rgba(255,255,255,.25);
}
.step-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: .2rem 1.5rem;
    border-radius: 50px;
    background-color: #e6e6e6;
    background: linear-gradient(to right, #ffe4b3, #ffc14d, #e69500);
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
}
.step-header-num {
    transform: scale(1.5);
    padding-left: .7rem;
}
.step-arrow {
    font-size: 2.2rem;
    margin-top: -2px;
    color: #ffedcc;
}
.step-body {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 0px 4px #000;
    padding: .7rem;
}
.step-body-icon {
    transform: scale(2);
    padding-right: 1.2rem;
}
/**************************************** MAIN_PANEL_RIGHT ****************************************/
.main-panel-right {
    /* as item of .main-panel */
    flex: 1;
    
    display: flex;
    flex-direction: column;
    background-color: rgba(16, 49, 86, .3);
    overflow: hidden;
}

.main-panel-right-login-form {
    position: relative;
    /* as item of .main-panel-right */
    flex: 1;
    background-color: inherit;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#updateInfo {
    width: 100%;
    display: flex;
    justify-content: center;
}
.login-alert-panel {
    /* as item of .main-panel-right-login-form */
    width: 60%;
    max-width: 70rem;
    
    /* as container */
    display: none;
    align-items: center;
    justify-content: center;
    
    background-color: transparent; /*Fallback*/
    color: inherit; /*Fallback*/
    background: linear-gradient(to right, #ffe4b3, #992600, #802000);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 7px;
}
.login-alert-txt {
    font-size: 1.7rem;
    text-shadow: 0px 0px 4px #000;
}
.login-alert-panel &gt; i {
    margin-right: 1rem;
    font-size: 2.5rem;
}
.login-form {
    /* as item of .main-panel-right-login-form */
    width: 60%;
    max-width: 70rem;
    
    /* as container */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 5rem 2rem;
    border-radius: 7px;
    color: inherit;
    border: 2px solid rgba(255,255,255,.4);
    background-color: rgba(16, 49, 86, .75);
    box-shadow: 0px 0px 22px 5px rgba(255,255,255,.5);
}
.form-header {
    /* as item of .login-form*/
    width: 100%;
    
    /* as container */
    display: flex;
    justify-content: center;
    
    font-weight: 700;
    margin-bottom: 5rem;
    background-color: transparent; /*Fallback*/
    color: inherit; /*Fallback*/
    background: linear-gradient(to right, #ffe4b3, #ffc14d, #e69500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.login-form &gt; *:not(:last-child) {
    margin-bottom: 5rem;
}
.input-group {
    /* as item of .login-form */
    width: 80%;
    max-width: 50rem;
    
    /* as container */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.input-group-header {
    /* as item of .input-group */
    width: 100%;
    
    /* as container */
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-group-icon {
    font-size: 1.4rem;
    margin-right: .7rem;
    text-shadow: 0px 0px 4px #000;
    color: #ffaf1a;
}
.input-group-label {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.4rem;
    background-color: transparent; /*Fallback*/
    color: inherit; /*Fallback*/
    background: linear-gradient(to right, #ffc14d, #e69500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.login-form-input {
    /* as item of .input-group */
    width: 100%;
    
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    color: inherit;
    
    text-align: center;
    text-shadow: 0px 0px 4px #000;
    padding: .7rem 2rem 1.2rem 2rem;
    letter-spacing: 2px;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(255, 193, 77, .5);
}
.login-further-actions {
    /* as item of .login-form*/
    width: 80%;
    
    /* as container */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#UpdateArea {
    /* as item of .login-further-actions */
    width: 100%;
    display: flex;
}
.login-form-btn {
    /* as item of #UpdateArea */
    flex: 1;
    
    font-family: inherit;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: inherit;
    color: #333;
    
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    margin-bottom: 4rem;
    text-align: center;
    cursor: pointer;
    outline: none;
    background-color: #e6e6e6; /*Fallback*/
    background: linear-gradient(to right, #ffe4b3, #ffc14d, #e69500);
    
    transition: all .2s ease-in-out;
}
.login-form-btn:hover,
.login-form-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0px 0px 18px 1px #ffc14d;
}
.further-actions-list {
    list-style: none;
}
.further-actions-list li:first-child {
    margin-bottom: 2rem;
}
.input-group-forgot,
.input-group-signup {
    padding: .5rem 1rem;
/*    border-radius: 50px;*/
    font-weight: 700;
    font-size: 1.45rem;
    
    text-align: left;
    text-decoration: none;
    background: linear-gradient(to right, #ffe4b3, #ffc14d, #e69500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    transition: border-bottom .2s ease-in-out;
}
.input-group-forgot:hover,
.input-group-forgot:focus,
.input-group-signup:hover,
.input-group-signup:focus {
    border-bottom: 1px solid #ffc14d;
}

/***************** Checkboxes *****************/
.input-group-radio {
    /* as item of .input-group */
    width: 100%;
    border-bottom: 1px solid rgba(255, 193, 77, .5);

    display: flex;
    justify-content: center;
    align-items: center;
}
.radio-container {
    /* as item of .input-group-radio */
    flex: 1;
    padding-bottom: 1.2rem;
    padding-top: 1.5rem;
    
    position: relative;
    display: flex;
    justify-content: center;

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button circle */
.checkmark {
    position: relative;
    margin-left: 1rem;
    height: 2.5rem;
    width: 2.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 193, 77, .5);
    border-radius: 50%;
    
    transition: all .2s ease-in-out;
}
/* On hover, add a background color */
.radio-container:hover input ~ .checkmark,
.radio-container:focus input ~ .checkmark {
    background-color: #ffc14d;
}
/* When the radio is checked, add a background */
.radio-container input:checked ~ .checkmark {
    background-color: #ffc14d;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
    left: .8rem;
    top: .3rem;
    width: .8rem;
    height: 1.5rem;
    border: solid #333;
    border-width: 0 .4rem .4rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/**************************************** ABOUT US MODAL ****************************************/
.AboutUs-Modal {
    display: none;
    z-index: 1500;
    
    /*position: fixed;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(28, 85, 151, .85); /* #1c5597 */
}
.AboutUs-Modal.modalOpen { 
    display: flex;
}
.aboutUs-modal-content {
    display: flex;
    flex-direction: column;
        
    /*position: fixed;*/
    position: absolute;
    width: 60%;
    left: 20%;
        
    top: -50%;  
    opacity: 0;
    background-color: rgba(16, 49, 86, .8); /* #103156 */
    color: #e6e6e6;
    text-shadow: 0px 0px 4px #000;
    
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(255, 255, 255, .5), 0 6px 30px rgba(255, 255, 255, .6);

    transition: all .6s ease-in-out; 
}
.aboutUs-modal-content.modalOpen {
    opacity: 1;
    top: 5%;
}
.aboutUs-modal-header {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    /*border-bottom: 1px solid #7eafe7;*/
    text-shadow: none;
    overflow: hidden;
}
.aboutUs-modal-heading {
    background-color: transparent;
    color: #ffc14d;
    font-weight: 400;
}
.aboutUs-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: .5rem 1.5rem; /* to match height of modal-header*/
    border-radius: 50%;
    font-size: 2.2rem;
    cursor: pointer;
    
    transition: all .2s ease-in-out;
}
.aboutUs-close-btn:hover, 
.aboutUs-close-btn:focus {
    color: #ffa500;
    background-color: rgba(255, 255, 255, .2);
}
.aboutUs-listItem {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: .5rem 1rem;
}
.aboutUs-listItem-num {
    font-size: 1.8rem;
    margin-right: .6rem;
}
.aboutUs-modal-footer {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #ffc14d;
    font-size: 1.8rem;
}
.aboutUs-modal-footer &gt; i {
    font-size: 2rem;
    margin-right: 1rem;
}


/**************************************** MEDIA QUERIES ****************************************/

@media only screen and (max-width: 79.7em) { /*1275px*/
   .login-form {
        width: 70%;
        padding: 3rem 2rem;
   }
   .main-panel-left {
        flex: 0 0 33%;
   }
}
@media only screen and (max-width: 65.3em) { /*1045px*/
    .login-form {
        width: 80%;
    }
    .steps, 
    .aboutUs {
        width: 90%;
    }
    .aboutUs-modal-content {
        width: 80%;
        left: 10%;
    }
}
@media only screen and (max-width: 56.25em) { /*900px*/
    .step-body-icon {
        padding-right: 1.5rem;
        padding-left: 1rem;
    }
}
@media only screen and (max-width: 48em) { /*768px*/
    .main-panel {
        flex-direction: column;
    }
    .steps {
        display: none;
    }
    .main-panel-left {
        flex: 0 0 8vh;
        flex-direction: row;
    }
    .main-panel-left-header,
    .aboutUs-panel {
        flex: 1;
        height: 100%;
        align-items: center;
    }
    .logo  {
        width: 21rem;
    }
    .aboutUs {
        width: 70%;
        box-shadow: none;
    }
    .login-form {
        padding: 2rem;
        flex-shrink: 0;
    }
    .login-alert-panel {
        width: 80%;
        margin-bottom: 0;
        /*margin-top: 5rem*/
    }
    .main-panel-right {
        height: 87vh;
    }
    .main-panel-right-login-form {
        overflow-x: hidden;
        overflow-y: auto;
    }
    #updateInfo,
    .login-further-actions,
    .form-header,
    .input-group { 
        flex-shrink: 0;
    }
    .login-form-btn {
        margin-bottom: 2rem;
    }
    .login-form &gt; *:not(:last-child) {
        margin-bottom: 4rem;
    }
    .main-panel-right-login-form {
        justify-content: flex-start; /*center caused items to overflow*/
    }
    #updateInfo {
        margin-top: 1rem;
    }
}
@media only screen and (max-width: 31.25em) { /*500px*/
    .main-panel-left-header {
        justify-content: flex-start;
    }
    .aboutUs-panel {
        justify-content: flex-end;
    }
    .aboutUs {
        width: 85%;
    }
    .aboutUs-modal-content {
        width: 100%;
        left: 0;
        padding: 1rem;
    }
}
@media only screen and (max-width: 26.25em) { /*420px*/
    .login-form,
    .input-group,
    .login-alert-panel,
    .login-further-actions {
        width: 90%;
    }
    .further-actions-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logo {
        width: 19rem;
    }
    .aboutUs {
        width: 100%;
        height: 4rem;
        box-shadow: none;
    }
    .main-panel-left {
        flex: 0 0 7vh;
    }
    .main-panel-right {
        height: 88vh;
    }
}
@media only screen and (max-width: 23.1em) { /*370px*/
    .login-form,
    .login-alert-panel {
        width: 95%;
    }
    .footer &gt; span {
        font-size: 1.5rem;
    }
}</pre></body></html>