﻿html, body {
    height: 100%;
}

body {
    font-family: segoe ui, helvetica neue, helvetica, arial, sans-serif;
    font-size: 12px;
    overflow-x: hidden;
    background-color: #5575B4;
    background-size: contain;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.noticeBar {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    text-align: center;
    width: 100%;
}

.noticeBar__item {
    background-color: #B80000;
    text-align: center;
    padding: 5px;
    color: #FFFFFF;
}

.masterContentContainer {
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.mainContent__returnToSignIn {
    text-align: center;
    color: #6D6D6D;
    margin-top: 25px;
    text-decoration: none;
    font-size: 1.2em;
    line-height: 16px;
    padding-bottom: 25px;
}

.mainContent__returnToSignInLogo {
    margin-left: 5px;
    margin-right: 5px;
    pointer-events: none;
    margin-bottom: -1px;
    height: 16px;
    width: 16px;
    vertical-align: middle;
}

.nseContent {
    width: 80%;
    max-width: 768px;
    text-align: left;
    vertical-align: top;
    background-color: #FFFFFF;
    padding: 15px;
    -moz-box-shadow: 3px 3px 15px 0px rgba(0,0,0,0.6);
    -webkit-box-shadow: 3px 3px 15px 0px rgba(0,0,0,0.6);
    box-shadow: 3px 3px 15px 0px rgba(0,0,0,0.6);
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.nseContent__logo {
    max-width: 200px;
    max-height: 200px;
}

.nseContent__entityName {
    font-size: 2.33em;
    margin-top: 5px;
}

.nseContent__divider {
    margin: 10px 0px 0px;
    background-color: #A9A9A9;
    height: 2px;
    border: none;
    width: 100%;
}

.nseContent__redirection {
    text-align: center;
    color: #1E5376;
    margin-top: 25px;
}

.cmaMessageContent {
    margin: 10px 0px;
    width: 100%;
}

.cmaMessageContent__promptMessage {
    padding: 5px;
    margin-bottom: 5px;
    color: #000000;
}

.cmaMessageContent__promptMessage--errorMessage {
    background-color: #FABABB;
}

.cmaMessageContent__promptMessage--infoMessage {
    background-color: #A0CCFF;
}

.cmaMessageContent__promptMessageText {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

    .cmaMessageContent__promptMessageText::before {
        margin-right: 5px;
    }

.cmaMessageContent__promptMessageText--errorMessage::before {
    content: url(../Content/svg/Error.svg);
}

.cmaMessageContent__promptMessageText--infoMessage::before {
    content: url(../Content/svg/Info.svg);
}

.nseContent__formTitle {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: left;
    padding: 10px 30px 0px 30px;
}

.nseContent__formSummary {
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    padding: 0 30px;
    margin-bottom: 25px;
}

.nseForm {
    text-align: left;
    padding: 0 30px 42px 30px;
    position: relative;
}

.nseForm__labelAndInputContainer {
    margin-bottom: 20px;
    display: block;
}

.nseForm__radioButton{
    display: block;
}

.nseForm__label {
    display: block;
    text-align: left;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 500;
}

.nseForm__textbox {
    border-color: #CCCCCC;
    border-width: 1px;
    border-style: solid;
    background-color: #FFF;
    padding: 0px 7px;
    font-size: 12px;
    height: 25px;
}

    .nseForm__textbox:focus {
        outline-offset: 0;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.nseForm__dropdown {
    font-size: 12px;
    height: 27px;
    border-color: #CCCCCC;
    border-width: 1px;
    border-style: solid;
    text-overflow: ellipsis;
}

.nseForm__dropdown, .nseForm__textbox {
    max-width: 304px;
    box-sizing: border-box;
}

.nseForm__checkbox {
    margin: 0;
}

.nseForm__requiredFieldsMsg {
    font-style: italic;
    font-size: 14px;
    line-height: 16px;
}

.nseForm__requiredFieldsAsterisk {
    color: #CC3333;
}

.field-validation-error::before {
    content: url(../Content/svg/Error.svg);
    margin-right: 5px;
}

.field-validation-error {
    margin: 5px 0 5px 0px;
    color: #CC3333;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
}


.nseForm__dropdown.input-validation-error, .nseForm__textbox.input-validation-error {
    outline-color: #CC3333;
    outline-width: 1px;
    outline-style: solid;
}

.nseForm__label.error {
    color: #CC3333;
}

.nseForm__paragraph {
    font-size: 14px;
    line-height: 16px;
    padding: 0 30px;
    margin: 20px 0;
}

.nseForm__submitBtn {
    border: none;
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: bold;
    padding: 10px 50px;
    background-color: #32A434;
}

    .nseForm__submitBtn:hover {
        cursor: pointer;
        background-color: #29852A;
    }

.nseForm_arrowRightSVG {
    margin-left: 5px;
    pointer-events: none;
    margin-bottom: -1px;
    height: 13px;
    width: 13px;
}

.nseForm__baseValidation {
    margin: initial !important;
}

.footerContent {
    margin-top: 20px;
}

.footerContent__logo {
    height: 70px;
    display: block;
    margin: 0 -1px 15px auto;
    width: 110px;
}

.footerContent__logo--wsipc {
    width: 200px;
}

.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.nseForm_textBoxLarge {
    width: 20em;
}

.nseForm_textBoxMedium {
    width: 15em;
}

.nseForm_textBoxSmall {
    width: 8em;
}

.radioButtonContent {
    cursor: pointer;
}

.radioButtonLabel {
    vertical-align: text-top;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (min-width: 670px) {
    .field-validation-error {
        margin-left: 160px;
    }

    .nseForm__label {
        display: inline-block;
        text-align: right;
        width: 140px;
    }

    .nseForm__labelAndInputContainer {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .nseForm__recaptcha {
        margin-left: 160px;
    }

    .nseForm__submitBtn {
        right: 0;
        bottom: 0;
        position: absolute;
    }

    .nseForm__radioButtonContainer {
        padding-right: 0.5rem;
        margin-left: -0.15rem;
    }
}

@media (max-width: 670px) {
    .nseForm__label {
        margin-bottom: 3px;
    }

    .nseForm_InlineInput {
        display: -webkit-flex;
        display: flex;
    }
    .nseForm__recaptchaContainer, .nseForm__submitBtnContainer {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-items: center;
        align-items: center;
        justify-content: center;
    }
}
