﻿/*Sign in Screens*/
.sign-view {
    height: 100%;
    min-height: 100%;
    margin: 0 60px 0 86px;
    padding-top: 60px;
}

    .sign-view .grid-container {
        height: calc(100% - 146px);
    }

    .sign-view .grid-half {
        height: 100%
    }


.sign-cta {
    height: 100%;
    padding: 40px;
    background: #20293C;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sign-cta-logo {
    background: url('/static/shell2/images/logo.svg') top left no-repeat;
    background-size: contain;
    height: 70px;
    width: 140px;
}

.sign-cta-content {
    font-size: 50px;
    margin: 20px;
    font-weight: 300;
    line-height: 82px;
}

    .sign-cta-content span {
        font-weight: 600;
        color: #7ABDFF;
    }

.sign-cta-vid {
    display: flex;
    align-items: center;
}

    .sign-cta-vid span {
        display: inline-block;
        font-size: 12px;
        line-height: 37px;
        padding-left: 21px;
        color: #1F8EFA;
    }

    .sign-cta-vid:before {
        content: '';
        display: inline-block;
        height: 37px;
        width: 37px;
        background: url(/static/shell2/images/icon-play.svg) top left no-repeat;
    }




.form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.sign-form-logo {
    background: url('/static/shell2/images/logo.svg') top center no-repeat;
    background-size: contain;
    height: 100px;
    width: 100%
}

.form-side h1 {
    font-size: 30px;
    font-weight: 200;
    margin: 20px auto;
    text-align: center;
}

.form-side label {
    font-family: roboto, sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 20px;
    padding-bottom: 4px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.form-side .txt {
    margin: 0 auto;
    display: block;
    margin-bottom: 24px;
}

.form-side .btn {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 24px;
    color: #fff;
    background-color: #D63408;
    cursor: pointer;
}

.form-side .btn:hover {
    color: #fff;
    transition: color 0.25s ease;
    transition: background-color 0.25s ease;
    background-color: #1F8EFA;
}

.forgot-pass {
    text-align: center;
    font-size: 12px;
    padding: 48px 0;
    color: #ACACAC;
}

.signup-link {
    text-align: center;
    font-size: 12px;
    color: #ACACAC;
}

.copy {
    font-size: 10px;
    margin: 50px 0 22px 0;
    text-align: center;
    color: #ACACAC;
}

.txt.error {
    color: #D63408;
    border-color: #D63408;
}

.error-message {
    font-size: 16px;
    font-family: roboto, sans-serif;
    height: 20px;
    width: 327px;
    margin: 0 auto;
    padding-left: 36px;
    position: relative;
}

    .error-message:before {
        left: 0px;
        position: absolute;
        content: '';
        display: inline-block;
        height: 20px;
        width: 20px;
        background: url(/static/shell2/images/icon-error.svg) top left no-repeat;
    }

