﻿/* Login page styles */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: #f8f8fb;
}

header {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-wrap {
    max-width: 200px;
}

    .brand-wrap img {
        width: 100%;
    }

header nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 50px;
}

span.white-logo svg path {
    fill: #fff;
}

.login-main-wrapper {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    height: calc(100vh - 80px);
    align-items: center;
    width: 100%;
}

.login-inner-wrap {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-content-wrap {
    display: flex;
}

.login-left-wrap, .login-right-wrap {
    width: 50%;
}

.login-left-wrap {
    background-color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right-wrap {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: #000;
}

.login-side-image-wrap {
    height: 100%;
}

.login-right-txt {
    font-size: 14px;
    line-height: 1.5;
}

.login-form-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.login-left-wrap h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
    margin-top: 0px;
}

.login-left-wrap p {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.login-card-header p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.login-card-header-right img {
    width: 100%;
}

.login-card-body {
    padding: 25px;
    margin-top: -30px;
    margin-bottom: 40px;
}

.login-form-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form-input-wrap label, label#ctl00_ContentPlaceHolder1_Login1_RememberMeLabel {
    font-size: 14px;
    color: #555;
}

.login-form-input-wrap input {
    border: 1px solid #ced4da;
    /* padding: 5px; */
    border-radius: 0.25rem;
    padding: 0.47rem 0.75rem;
    font-size: 0.8125rem;
    color: #495057;
    width: auto;
    outline: none;
}

.login-form-submit-btn-wrap input {
    width: 100%;
    /*background-color: rgba(0, 146, 188, 1);*/
    background-color: #007299;
    color: #fff;
    box-shadow: none;
    border: none;
    line-height: 1.5;
    vertical-align: middle;
    padding: 0.47rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 5px;
    font-size: 16px;
}

.login-card-body table {
    width: 100%;
}

    .login-card-body table a {
        text-decoration: none;
    }

.login-side-info-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.login-side-txt {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.login-side-logo {
    margin-bottom: 15px;
}

.forgot-text-wrap {
    text-align: center;
}

span#ctl00_ContentPlaceHolder1_Label2 {
    margin-bottom: 10px;
}

.login-side-image-wrap img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.login-form-brand-logo-wrap {
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50%;
    margin-top: -26px;
    margin-bottom: 15px;
    background-color: rgb(0, 146, 188);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-form-brand-logo-wrap img {
        height: 48px;
    }

.password-input-wrap {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

    .password-input-wrap input {
        width: -webkit-fill-available;
    }

span.show-pw-btn {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #eff2f7;
    cursor: pointer;
    width: 32px;
    border-radius: 0.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

    span.show-pw-btn svg {
        width: 16px;
    }

    span.show-pw-btn .close-eye {
        display: none;
    }

    span.show-pw-btn.active-pw .open-eye {
        display: none;
    }

    span.show-pw-btn.active-pw .close-eye {
        display: block;
    }
/* Forgot password page styles */
.forgot-pw-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.forgot-pw-left-wrap h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
    margin-top: 0px;
}

.forgot-pw-left-wrap p {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}


.forgot-pw-body {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.forgot-pw-left-wrap, .forgot-pw-right-wrap {
    width: 50%;
    background-color: #fff;
    padding: 40px;
}

.forgot-pw-input-wrap label {
    font-size: 14px;
    color: #555;
}


.forgot-pw-input-wrap input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.47rem 0.75rem;
    font-size: 0.8125rem;
    color: #495057;
    width: auto;
    outline: none;
    margin-top: 10px;
}

.forgot-pw-input-wrap {
    display: flex;
    flex-direction: column;
}

    .forgot-pw-input-wrap input[type="submit"] {
        width: 100%;
        background-color: rgba(0, 146, 188, 1);
        color: #fff;
        box-shadow: none;
        border: none;
        line-height: 1.5;
        vertical-align: middle;
        padding: 0.47rem 0.75rem;
        border-radius: 0.25rem;
        cursor: pointer;
        margin-top: 5px;
        font-size: 16px;
    }

.back-to-login-row {
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

    .back-to-login-row a {
        text-decoration: none;
    }

span.back-to-login-icon svg {
    height: 12px;
}

.forgot-pw-right-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
}

    .forgot-pw-right-wrap img {
        margin-bottom: 20px;
    }

a#ctl00_ContentPlaceHolder1_Login1_lnk_password {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    text-decoration: none;
    padding: 5px;
}

.forgot-pw-row {
    margin-bottom: 10px;
}
/* Reset password */
.reset-pw-wrapper {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    height: calc(100vh - 80px);
    align-items: center;
    width: 100%;
}

.reset-pw-inner-wrap {
    display: flex;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reset-row {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.riContentWrapper {
    width: 100% !important;
}

span#ctl00_ContentPlaceHolder1_PasswordInput1_wrapper, span#ctl00_ContentPlaceHolder1_PasswordInput2_wrapper {
    width: 100% !important;
}

input#ctl00_ContentPlaceHolder1_text_code {
    width: auto !important;
    height: 24px;
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.47rem 0.75rem;
    font-size: 0.8125rem;
    color: #495057;
    outline: none;
}

input#ctl00_ContentPlaceHolder1_PasswordInput1, input#ctl00_ContentPlaceHolder1_PasswordInput2 {
    width: 100% !important;
    height: 38px;
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.47rem 0.75rem;
    font-size: 0.8125rem;
    color: #495057;
    outline: none;
}

.reset-row input {
    width: 100% !important;
    height: 20px;
    padding: 5px;
}

.reset-pw-left-wrap, .reset-pw-right-wrap {
    width: 50%;
    padding: 40px;
    background: #fff;
}

.reset-pw-left-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #000;
    color: #fff;
}

    .reset-pw-left-wrap ul li {
        margin-bottom: 5px;
    }

    .reset-pw-left-wrap h3 {
        margin-bottom: 10px;
        font-size: 24px;
        margin-top: 0px;
    }

span.reset-label {
    font-size: 14px;
    color: #555;
}

input#ctl00_ContentPlaceHolder1_cmd_update_password {
    width: 100%;
    background-color: rgba(0, 146, 188, 1);
    color: #fff;
    box-shadow: none;
    border: none;
    line-height: 1.5;
    vertical-align: middle;
    padding: 0.47rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 5px;
    font-size: 16px;
}

span.login-contact-detail {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
    gap: 5px;
}
