body {
    background-color: #252D33 !important;
    display: flex;
    flex-direction: column;
    padding: 0 40px !important;
    gap: 4.7vh;
    align-items: center;
    font-family: Arial, sans-serif;
    margin-top: 0;
}

div.app_name {
    color: #EEE;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 0;
}

div.logocont {
    display: flex;
    align-items: flex-start;
    gap: 1.5vh;
    width: 100vw;
    max-width: 608px;
}

.logo {
    width: 166px;
    height: 80px;
    aspect-ratio: 83/40;
}

.bc-loginbox {
    width: 100%;
    max-width: 608px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.login-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#loginField, #passwordField {
    height: 40px;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #CCC;
    background: rgba(255, 255, 255, 0.95);
}

#passwordField {
    padding-right: 40px;
}

#loginSubmitButton {
    display: flex;
    width: 100%;
    height: 40px;
    min-width: 32px;
    justify-content: center;
    align-items: center;
    gap: 0.4vh;
    border-radius: 4px;
    background: #2D72BE;
    align-self: stretch;
    font-size: 17px;
    padding: 12px 16px;
}

#loginSubmitButton:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%),  #2D72BE;
}

#loginUserLabel, #loginPassLabel {
    padding: 8px 0;
    color: #EEE;
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
    font-style: normal;
}

#message-error-wrapper {
    min-height: 24px;
}

#message-error {
    color: #FF9592;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 0.4vh;
    padding-top: 4px;
}

#forgotPassBtn {
    background-color: #252D33;
    display: flex;
    height: 32px;
    min-width: 32px;
    padding: 4px 8px;
    align-items: center;
    gap: 0.4vh;
    border-radius: 4px;
    border: none;
    color: #FFFFF9;
    margin-top: 24px;
    margin-bottom: 48px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.eye-icon{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    right: 10px;
    width: 20px;
    height: 20px;
    z-index: 2;
}

#forgotPassBtn:hover {
    background: rgba(0, 0, 0, 0.10);
}

.logincopyright {
    display: none;
}

.form-group {
    width: 100%;
    margin: 0;
}

.input-group {
    width: 100%;
}

#loginField.is-invalid,
#passwordField.is-invalid {
    border: 1px solid #C41C23;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #FFF inset !important;
    box-shadow: 0 0 0 1000px #FFF inset !important;
    -webkit-text-fill-color: #000 !important;
    background: #FFF !important;
}

@media (min-width: 768px) {
    div.logocont {
        flex-direction: column;
        gap: 2.3vh;
        align-self: stretch;
        margin-top: 16.4vh;
        padding-top: 0;
    }

    #loginField, #passwordField {
        height: 32px;
        padding: 10px 8px;
        align-items: center;
        gap: 0.4vh;
        border: 1px solid #D6DADF;
        color: #5F656A;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    #forgotPassBtn {
        margin-bottom: 24px;
    }

    #loginSubmitButton {
        width: 100px;
        height: 32px;
        font-size: 16px;
        padding: 4px 8px;
    }

    #loginUserLabel, #loginPassLabel {
        font-size: 16px;
    }
}