/* Used by:
    - Login.master
    - Enroll/Login/Enroll.master
    - SSO/SSO.master
*/

body {
    background: #f7f7f7;
}

#Form {
    margin: 100px auto;
    width: 680px;
}

#Content {
    padding: 50px 60px 40px 60px;
    border: solid 1px #e0e0e0;
    border-bottom-width: 5px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 0px 20px -12px #d6d6d6;
}

#Content .ContentLogo:not([href]),
#Content .ContentLogo:not([href]) *,
#Footer .FooterLogo:not([href]),
#Footer .FooterLogo:not([href]) * {
    cursor: default !important;
}

#Content .ContentLogo img {
    margin-bottom: 60px;
    max-height: 100px;
    max-width: 160px;
}

#Content h1 {
    margin: 0 0 20px 0;
    font-size: 18pt;
    font-weight: 800;
}

#Content h1 small {
    font-weight: 300;
    opacity: 0.65;
    font-size: 14pt;
}

#Content h2 {
    margin: 20px 0 10px 0;
    font-size: 13pt;
    font-weight: 800;
}

#Content p {
    margin: 20px 0;
    font-size: 10pt;
    line-height: 18px;
}

#Content .Question {
    display: inline-block;
    margin: 0 0 -2px 2px;
    height: 16px;
    width: 16px;
    background: url(/static/assets/images/info.svg?v=d135be715cfeb8bf401a8bb145913800f799de67) no-repeat left center;
    background-size: 16px;
    cursor: pointer;
}

#Content .Answer {
    display: none;
    margin-top: 0 !important;
    overflow: hidden;
    color: #b5bbbd !important;
    line-height: 18px;
}

#Content .Validation,
#Content .BadCredentials {
    display: none;
}

#Content .Validation,
#Content .BadCredentials,
#Content .ServerError,
#Content .ServerValidation {
    color: #ff4c4c;
    font-size: 10pt;
    font-weight: 500;
    line-height: 22px;
}

#Content .Validation.Inline,
#Content .BadCredentials.Inline,
#Content .ServerError.Inline,
#Content .ServerValidation.Inline {
    margin-left: 20px;
}

#Footer .Container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#Footer {
    overflow: visible;
    margin-bottom: 80px;
}

#Footer .Links li {
    display: inline-block;
}

#Footer .Links li a {
    margin: 0 10px 0 0;
    text-decoration: none;
    line-height: 18px;
}

#Footer .Links li a:hover {
    text-decoration: underline;
}

#Footer .FooterLogo {
    max-height: 60px;
    max-width: 120px;
    margin-top: -10px;

    flex: 0 0 120px;
}

#Footer .FooterLogo img {
    max-height: 60px;
    max-width: 120px;
}

#Footer .LanguageLink .DropdownIndicator {
    display: inline-block;
    margin-left: 5px;
    height: 7px;
    width: 8px;
    background: url(/static/assets/images/Collapse_Vertical.svg?v=d135be715cfeb8bf401a8bb145913800f799de67) no-repeat right -24px;
    background-size: 8px;
}

.HelpPopupTrigger {
    position: fixed;
    right: 20px;
    bottom: 17px;
    z-index: 2147483639;
}

.HelpPopupTrigger i {
    border-radius: 50%;
    color: #1a9dd6;
    font-size: 40pt;
    background-color: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.HelpPopup {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 2147483639;
    border: solid 1px #e0e0e0;
    border-radius: 3px;
    min-width: 100px;
    background-color: white;
    box-shadow: 3px 5px 10px -5px #39393c;
}

.HelpPopup .HelpPopupItems {
    padding: 5px;
    line-height: 18px;
}

.HelpPopup .HelpPopupItems .HelpPopupItem {
    border-radius: 3px;
    font-size: 10pt;
}

.HelpPopup .HelpPopupItems .HelpPopupItem:hover {
    background-color: #0a83be;
    cursor: pointer;
}

.HelpPopup .HelpPopupItems .HelpPopupItem:hover a {
    color: #ffffff;
    transition: none;
}

.HelpPopup .HelpPopupItems .HelpPopupItem a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 10pt;
    text-decoration: none;
    transition: none;
}

.HelpPopup.active {
    display: block;
}

@media (max-width: 767px) {
    #Form {
        margin: 0 !important;
        width: initial !important;
    }

    #Content {
        padding: 60px 30px 40px 30px !important;
        border-right: none !important;
        border-left: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    #Footer {
        overflow: auto;
        margin-right: 20px;
        margin-left: 20px;
    }

    #Footer .Links li {
        display: block;
        margin: 0 0 8px 0;
    }
}
