/*
.Button--blue {
    color: var(--white);
    background-color: var(--campusmain);
}

    .Button--blue:hover {
        background-color: var(--campuslight)
    }

    .Button--blue.outlined {
        background-color: transparent;
        border: 1px solid var(--campusmain);
        color: var(--campusmain);
    }

        .Button--blue.outlined:hover {
            border: 1px solid var(--campuslight);
            background-color: var(--campuslight);
            color: var(--white)
        }
*/

.Button--primary {
    border-radius:0.25rem;
    color: var(--btnPrimaryFront);
    background-color: var(--btnPrimaryBack);
}

    .Button--primary:hover {
        color: var(--btnPrimaryHoverFront);
        background-color: var(--btnPrimaryHover);
    }

    .Button--primary.outlined {
        background-color: transparent;
        border: 1px solid var(--btnPrimaryBack);
        color: var(--btnPrimaryBack);
    }

        .Button--primary.outlined:hover {
            border: 1px solid var(--btnPrimaryHover);
            background-color: var(--btnPrimaryHover);
            color: var(--btnPrimaryFront);
        }

.Button--secondary {
    color: var(--btnSecondaryFront);
    background-color: var(--btnSecondaryBack);
}

    .Button--secondary:hover {
        background-color: var(--btnSecondaryHover);
    }

    .Button--secondary.outlined {
        background-color: transparent;
        border: 1px solid var(--btnSecondaryBack);
        color: var(--btnSecondaryBack);
    }

        .Button--secondary.outlined:hover {
            border: 1px solid var(--btnSecondaryHover);
            background-color: var(--btnSecondaryHover);
            color: var(--btnSecondaryFront);
        }

.LoginForm {
    min-height: 320px
}

    .LoginForm > div {
        width: 280px;
        margin: 0 auto
    }

.LoginForm-title {
    font-size: 24px;
    font-weight: normal;
    color: #232324;
    line-height: 168px
}

.LoginForm-field {
    display: block;
    height: 48px;
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid #d9dcde;
    padding-left: 20px;
    font-size: 16px
}

    .LoginForm-field:focus {
        border: 1px solid #67b3fe
    }

    .LoginForm-field.error {
        border: 1px solid var(--errorFront)
    }

    .LoginForm-field + label.error {
        position: relative;
        font-size: 14px;
        top: -20px
    }

.LoginForm-error {
    display: block;
    font-size: 14px;
    color: var(--errorFront);
    margin-bottom: 24px
}

.LoginForm-submit.Button--primary {
    display: block;
    width: 100%;
    margin: 0;
    margin-bottom: 24px;
    font-size: 16px;
    height: 40px
}

.LoginForm-reset {
    color: var(--linkColor);
    font-size: 16px
}

/*Register form*/
.RegisterForm {
  /* min-height: 480px;*/ 
    color: #93969e;
}

    .RegisterForm > div {
        width: 480px;
        margin: 0 auto;
    }

.RegisterForm-title {
    font-size: 24px;
    font-weight: normal;
    color: #232324;
    line-height: 168px;
}

.RegisterForm-error {
    color: var(--errorFront);
    margin-bottom: 36px;
    padding-left: 2px;
}

.RegisterForm-label {
    color: #93969e;
    margin-bottom: 24px;
    padding-left: 2px;
}

.RegisterForm-sublabel {
    padding-left: 50px;
    font-size: 13px;
}

.RegisterForm-field,
.RegisterForm-field--password {
    display: block;
    height: 48px;
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid #d9dcde;
    padding-left: 20px;
    font-size: 16px;
}

    .RegisterForm-field:focus,
    .RegisterForm-field--password:focus {
        border: 1px solid #67b3fe;
    }

    .RegisterForm-field.error,
    .RegisterForm-field--password.error {
        border: 1px solid var(--errorFront);
    }

    .RegisterForm-field + label.error,
    .RegisterForm-field--password + label.error {
        position: relative;
        font-size: 14px;
        top: -20px;
    }

.RegisterForm-id {
    position: relative;
}

.RegisterCountryCode {
    display: none;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 120px;
    height: 46px;
    cursor: pointer;
    color: #232324;
    background-color:var(--thirdBack);
    border-left: 1px solid var(--darkBorderColor);
}

    .RegisterCountryCode:hover .RegisterCountryCode-list {
        display: block;
    }

.RegisterCountryCode-current {
    line-height: 44px;
    padding-left: 18px;
}

    .RegisterCountryCode-current:after {
        font-size: 8px;
        margin-left: 6px;
    }

.RegisterCountryCode-list {
    z-index: 10;
    display: none;
    background-color:var(--thirdBack);
    overflow-y: scroll;
    position: absolute;
    width: 119px;
    height: 150px;
    top: 47px;
    left: 0;
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.4);
}

    .RegisterCountryCode-list > div {
        padding-left: 18px;
        line-height: 48px;
        border-bottom: 1px solid var(--darkBorderColor);
    }

        .RegisterCountryCode-list > div:hover {
            background-color: var(--darkBorderColor);
        }

.RegisterForm-field--password {
    width: 47.5%;
    display: inline-block;
}

    .RegisterForm-field--password ~ label.error {
        width: 47.5%;
        position: relative;
        display: inline-block;
        font-size: 14px;
        top: -20px;
    }

.RegisterForm-submit.Button--primary {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    vertical-align: middle;
}

.RegisterForm-terms {
    padding: 10px 0;
}

    .RegisterForm-terms > a {
        color: #000;
        text-decoration:underline;
    }

.RegisterConfirm {
    height: 100%;
    min-height: 480px;
    background-color: #f6f6f7;
    color: #93969e;
}

    .RegisterConfirm > div {
        width: 480px;
        margin: 0 auto;
    }

.RegisterConfirm-title {
    font-size: 24px;
    font-weight: normal;
    color: #232324;
    line-height: 168px;
}

.RegisterConfirm-message {
    padding-bottom: 24px;
    line-height: 1.2em;
}

    .RegisterConfirm-message > b {
        color: #444;
    }

.RegisterConfirm-code {
    position: relative;
    margin-top: 24px;
    margin-bottom: 48px;
    text-align: center;
}

    .RegisterConfirm-code > input {
        height: 48px;
        width: 48px;
        margin-right: 8px;
        border: 1px solid #d9dcde;
        text-align: center;
        font-size: 24px;
        font-weight: normal;
    }

        .RegisterConfirm-code > input:focus {
            border: 1px solid #67b3fe;
        }

        .RegisterConfirm-code > input.error {
            border: 1px solid var(--errorFront);
        }

.RegisterConfirm-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(246,246,247,0.9);
}

.RegisterConfirm-error {
    display: block;
    color: var(--errorFront);
    font-size: 14px;
    padding-top: 6px;
}

.RegisterConfirm-submit.Button--primary {
    display: block;
    width: 100%;
    margin: 0;
    margin-bottom: 24px;
    font-size: 16px;
}

.RegisterConfirm-change,
.RegisterConfirm-resend {
    display: block;
    padding: 10px 0;
    color: #69f;
}

.RegisterChangeDetails {
    height: 100%;
    min-height: 480px;
    background-color: #f6f6f7;
    color: #93969e;
}

    .RegisterChangeDetails > div {
        width: 480px;
        margin: 0 auto;
    }

.RegisterDetails-submit,
.RegisterDetails-cancel {
    margin: 0;
    display: inline-block;
    width: 45%;
}

@media (max-width: 767px) {
    .RegisterForm > div,
    .RegisterConfirm > div,
    .RegisterChangeDetails > div {
        width: 90%;
    }

    .RegisterForm-title,
    .RegisterConfirm-title {
        font-size: 20px;
        line-height: 100px;
    }

    .RegisterForm-sublabel {
        display: block;
        padding-left: 0px;
    }

    .RegisterForm-field,
    .RegisterForm-field--password {
        padding-left: 8px;
    }
}

#enterLinkPage .RegisterForm-label {
    padding: 0;
}
/*End register form*/


/* Terms */

#content {
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

#content img.logo {
    position: absolute;
    top: 0;
    left: 0;
}

#content h1 {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 1em;
    line-height: 1.2;
    font-family: arial, sans-serif;
}

#content p:not(:last-child) {
    margin-bottom: 1em;
}

#content li {
    list-style-type: none;
}

    #content  li > b {
        font-weight: normal;
        float: left;
    }

#content > ul > li {
    padding-left: 2em;
    text-indent: -2em;
    font-weight: bold;
    margin-top: 1.5em;
}

    #content > ul > li > b {
        min-width: 2em;
        font-weight: bold;
    }

    #content > ul > li > * {
        font-weight: normal;
    }

    #content > ul > li > ul > li {
        padding-left: 2.5em;
        text-indent: -2.5em;
        font-weight: normal;
        margin: 0;
    }

        #content > ul > li > ul > li > b {
            min-width: 2.5em;
        }

        #content > ul > li > ul > li > ul > li {
            padding-left: 3em;
            text-indent: -3em;
        }

            #content > ul > li > ul > li > ul > li > b {
                min-width: 3em;
            }

#content p {
    text-indent: 0;
}

#back-link {
    margin-bottom: 3em;
}

@media only screen and (min-width: 481px) {
    #content {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 375px) {
    .LoginForm > div {
        width: 321px;
    }
}

    @media only screen and (max-width: 480px) {
        li {
            padding-left: 0 !important;
            text-indent: 0 !important;
        }

            li > b {
                min-width: 0 !important;
                padding-right: 1em;
            }
    }

