﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-family: "Roboto", sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background: url('/images/cs-background.jpg') no-repeat center center fixed;
    background-size: cover;
}

#login-container {
    min-width: 426px;
    max-width: 426px;
    width: 426px;
    height: 630px;
    min-height: 630px;
    max-height: 630px;
    padding: 0;
    background-color: #F1F3F4;
}

    #login-container .row {
        margin: 0;
    }

    #login-container div.left {
        -ms-flex: 0 0 318px;
        flex: 0 0 318px;
    }

    #login-container div.right {
        -ms-flex: 0 0 108px;
        flex: 0 0 108px;
        padding: 0 !important;
    }

    #login-container div.right img {
        height: 630px;
        width: 108px;
    }

    #login-container div.logo {
        margin-top: 40px;
    }

    #login-container .login-button,
    #login-container .login-button:hover {
        color: #FFF;
    }

    #login-container .error-text {
        color: red;
        font-weight: bold;
        height: 64px;
    }

    #login-container .form-control {
        border: 0;
        border-bottom: 1px solid grey !important;
        background-color: transparent !important;
        outline: none;
        border-radius: 0;
        height: 26px;
    }

    #login-container .form-control:active {
        outline: none;
    }

    #login-container .form-check-label {
        margin-top: 2px;
    }

#customer-logo-container {
    height: 160px;
}

#customer-logo-container img {
    max-width:250px
}

#login-button {
    background: rgb(0,41,87);
    background: linear-gradient(180deg, rgba(0,41,87,1) 0%, rgba(0,79,159,1) 100%);
    border-radius: 6px;
    border: none;
    color: #FFF;
    letter-spacing: 1px;
    width: 172px;
    height: 37px;
    font-size: 20px;
    font-weight: lighter;
    text-transform: uppercase;
    margin-top: 8px;
    outline: none;
    line-height: 25px;
}

.input-group .input-icon {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 4px;
    left: 2px;
}

.input-icon ~ input {
    padding-left: 26px;
}

.validation-summary-errors ul {
    list-style-type: none;
    margin: 0;
}

/*
* AUTOFILL FIX
*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    background-color: transparent;
}