﻿html {
    box-sizing: border-box;
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    position: relative;
    text-align: center;
    height: 100%;
    background: #22B2F7;
    overflow: hidden;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .85em;
    color: dimgray;
}

.wrap {
    width: 100%;
    height: 650px;
}

.user {
    position: relative;
    z-index: 0;
    float: none;
    margin: 0 auto;
    padding-top: 90px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #FFFFFF;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid #4FC1B7;
}

.content {
    position: fixed;
    z-index: 1;
    float: none;
    margin: 0 auto;
    width: 100%;
    height: 100px;
    background: #1E2145;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}

    .content img {
        padding: 0;
        margin: 0 auto;
        width: 200px;
        display: block;
    }

    .content span {
        color: #FFFFFF;
        display: block;
    }

    .content .content-bar {
        background-color: #22B2F7;
        margin: 50px 0;
    }

    .content span a {
        color: #FFFFFF;
        text-decoration: underline;
    }

        .content span a:hover {
            color: #22B2F7;
        }

.form-wrap {
    width: 100%;
    margin: 0;
    padding: 1em 3em;
    text-align: left;
    width: auto;
}

    .form-wrap h1 {
        text-align: center;
        color: #1E2145;
        font-size: 28px;
    }

    .form-wrap a {
        text-decoration: none;
        color: dimgray;
        font-size: 14px;
    }

        .form-wrap a:hover {
            color: #22B2F7
        }

    .form-wrap .external-provider {
        width: 100%;
        text-align: center;
    }

        .form-wrap .external-provider a {
            display: inline-block;
            border: 1px solid dimgray;
            padding: 10px;
            margin: 5px;
        }

            .form-wrap .external-provider a:hover {
                background-color: #1E2145;
                border: solid 1px #22B2F7;
                color: #FFFFFF;
            }

        .form-wrap .external-provider img {
            width: 20px;
        }

    .form-wrap .separator {
        display: flex;
        align-items: center;
        text-align: center;
    }

        .form-wrap .separator::before, .separator::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid dimgray;
        }

        .form-wrap .separator::before {
            margin-right: 10px;
        }

        .form-wrap .separator::after {
            margin-left: 10px;
        }

    .form-wrap .external-provider span {
        color: dimgray;
        padding: 25px 0;
        font-size: 24px;
        display: flex;
        justify-content: center
    }

    .form-wrap form .input {
        width: 100%;
        padding: 20px;
        margin: 10px 0;
        background: #DCDCDC;
        border: 1px solid dimgray;
        box-sizing: border-box;
        border: 0;
    }

textarea, select, input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #DCDCDC;
    border: 1px solid dimgray;
    box-sizing: border-box;
    border: 0;
}

.form-wrap .actions {
    display: block;
}

.form-wrap input[type=checkbox] {
    transform: scale(1.5);
    margin-left: 5px;
}

.remember-me {
    color: dimgray;
    font-size: 14px;
    cursor: pointer;
    vertical-align: top;
    margin-left: 5px;
}

    .remember-me:hover {
        color: #22B2F7;
    }

.form-wrap .forgot {
    display: inline-block;
    float: right;
    font-size: 14px;
}

.form-wrap .button {
    padding: 15px 50px;
    width: 100%;
    display: inline-block;
    background-color: #22B2F7;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
}

    .form-wrap .button:hover {
        background-color: #1E2145;
        border: solid 1px #22B2F7;
    }

.disclamer {
    text-align: center;
    margin-top: 20px;
}

#footer {
    color: #1E2145;
    text-align: center;
    line-height: normal;
    border-radius: 0px 0px 4px 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 20px 0 25px 0;
}

    #footer .footer-bar {
        margin: 0 50px 10px 50px;
        background-color: dimgray;
    }

    #footer span {
        font-size: 14px;
        color: dimgray;
    }

.stretched-link {
    padding-left: 5px;
}


.field-validation-error {
    color: #b94a48;
    list-style-type: none;
    padding-left: 0;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-align: left;
}

.validation-summary-errors {
    display: block;
    width: 100%;
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #b94a48;
    border-color: #b94a48;
    background: #f2dede url(/img/notification-error.png) 10px 10px no-repeat;
    font-size: 12px;
}

    .validation-summary-errors > span {
        margin: 3px 30px;
        display: block;
    }

    .validation-summary-errors ul {
        list-style-type: none;
        margin: 4px 10px 4px 30px;
        padding: 0;
        font-weight: normal;
    }

        .validation-summary-errors ul li {
            margin: 0;
            list-style: none;
        }
.warning-message {
    display: block;
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #8a6d3b;
    border-color: #8a6d3b;
    background: #fcf8e3 url('/A4/Content/icons/notification-warning.png?v=x_U-wyRm9pvlX1P-KWXFUcyugLg') 10px 10px no-repeat;
}

    .warning-message ul {
        list-style-type: none;
        margin: 4px 10px 4px 30px;
        padding: 0;
        font-weight: normal;
    }

        .warning-message ul li {
            margin: 0;
            list-style: none;
        }

.success-message {
    display: block;
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #468847;
    border-color: #468847;
    background: #dff0d8 url(/img/accept.png) 10px center no-repeat;
}

    .success-message ul {
        list-style-type: none;
        margin: 4px 10px 4px 30px;
        padding: 0;
        font-weight: normal;
    }

        .success-message ul li {
            margin: 0;
            list-style: none;
        }

.forgotten-content, .reset-content, .index-content, .logged-out-content, .error-content {
    margin: 25px 0;
    text-align: center;
}

    .index-content p {
        margin: 50px 0;
    }

    .error-content p {
        margin: 25px 0;
    }

    .forgotten-content button {
        margin-bottom: 25px;
    }

    .forgotten-content a, .logged-out-content a {
        margin: 0 auto;
    }

display-none {
    display: none;
}

.display-block {
    display: block;
}

.padding-right-10px {
    padding-right: 10px;
}

@media only screen and (min-width: 960px) {
    .wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 900px;
        margin: auto;
        border-radius: 10px;
    }

    .content, .content.full {
        position: relative;
        float: left;
        width: 40%;
        height: 100%;
        padding: 50px;
        -webkit-box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        -moz-box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        border-radius: 10px 0 0 10px;
    }

        .content img {
            margin: 50px auto;
            width: 250px;
        }

    .user {
        padding-top: 0;
        float: left;
        width: 60%;
        height: 100%;
        -webkit-box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        -moz-box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        border-radius: 0 10px 10px 0;
        border: 0;
    }

    .form-wrap {
        margin: 2em auto 0;
        padding: 1.5em 3em;
    }

    @media only screen and (min-height: 760px) {
        .wrap {
            height: 750px;
        }

        .form-wrap .login-content {
            margin: 25px 0;
        }

        .form-wrap .external-provider {
            margin: 25px 0;
        }

        textarea, select, input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
            padding: 20px;
        }

        .form-wrap .button {
            margin: 1em 0;
        }

        #footer {
            margin: 20px 0 50px 0;
        }
    }
}

@media only screen and (min-height: 810px) {
    .wrap {
        height: 800px;
    }
}

@media only screen and (min-width: 1200px) {
    .wrap {
        width: 1000px;
    }
}


@media only screen and (min-width: 1440px) {

    .wrap {
        width: 1200px;
    }

    .content, .content.full {
        height: 100%;
        padding: 50px;
    }

        .content img {
            width: 300px;
        }

    .user {
        height: 100%;
    }
}
