﻿/**********************************LOGIN FORM*********************************/
.login-form-control {
    background: #fff;
    border: 1px solid #c3c3c3;
    margin-top: 0;
    min-height: 215px;
    padding: 30px 30px 50px;
    width: 100%;
    margin: 50px 0 10px 0;
}

/* Input Fields 
   ============================== */

.login-form-control .login-input-row {
    margin: 0;
    position: relative;
    width: 100%;
}

/*onboarding ID is hidden on UI*/
.login-form-control .login-input-row.first {
    padding-bottom: 20px;
    display:none;
}

.login-form-control .login-input-row input {
    border-width: 1px;
    border: 1px solid #c3c3c3;
    color: #4c4c4c;
    font-size: 22px;
    font-weight: 300;
    height: 54px;
    left: 0;
    padding: 10px 10px 10px 54px;
    width: 100%
}

    .login-form-control .login-input-row input:focus {
        border-color: #BF4600;
        box-shadow: 0 0 2px #BF4600;
        outline: 0 none;
    }

.login-form-control .login-input-row .container-icon {
    display: inline-block;
    height: 54px;
    position: absolute;
    text-align: center;
    width: 54px;
}

.login-form-control .login-input-row .login-row-icon {
    color: #666666;
    font-size: 23px;
    line-height: 54px;
}

/* Sign In Button 
   ============================== */

.login-form-control .sign-in-button-row input {
    border: none;
}

.login-form-control .sign-in-button-row {
    padding-top: 20px;
    text-align: center;
}

.login-form-control .btn-sign-in {
    background-color: #BF4600;
    color: #fff;
    font-weight: 300;
    font-size: 26px;
    outline: 0;
    padding: 8px;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
    width: 100%;
}
    
    .login-form-control .btn-sign-in.disabled,
    .login-form-control .btn-sign-in:hover {
        background-color: #666;
        text-decoration: none;
    }

    .login-form-control .btn-sign-in.disabled {
        cursor: not-allowed;
    }

/* Message Container 
   ============================== */

.login-form-control .message-container {
    font-size: 13px;
    margin: 0;
    padding-bottom: 10px;
    width: 100%;
}

.login-form-control .message-container .message {
    padding: 0;
    width: 100%;
}

.login-form-control .message-container .exclamation-mark {
    font-size: 26px;
    position: absolute;
    text-align: center;
    width: 50px;
}

.login-form-control .message-container .exclamation-mark i {
    color: #CC0000;
    line-height: 40px;
}

.login-form-control .message-container .no-panel-comm-message,
.login-form-control .message-container .contact-provider-message,
.login-form-control .message-container .command-sent-message {
    padding-bottom: 15px;
}

.login-form-control .message-container .dealer-phone-message {
    padding-bottom: 10px;
}

/* The "logout-success" class is added in the Code Behind */
.login-form-control .message-container .page-errors.logout-success {
    background-color: #eefdef;
    border: 1px solid #c7f3c9;
    margin: 0;
    padding: 5px;
    text-align: center;
    width: 100%;
}

/* The "logout-error" class is added in the Code Behind */
.login-form-control .message-container .page-errors.logout-error {
    background-color: #f5c2c1;
    border: 1px solid #e55451;
    margin: 0;
    padding: 5px;
    text-align: center;
    width: 100%;
}

/* Login Options
   ============================== */

.login-form-control .login-options {
    width: 100%;
}

.login-form-control .login-options .input-checkbox-row {
    padding: 0;
}

.login-form-control .login-options .input-checkbox-row .show-password {
    display: none;
}

.login-form-control .login-options .login-help {
    float: right;
    z-index: 10;
}

.login-form-control .login-options .checkbox {
    display: block;
    font-size: 13px;
    margin: 2px 2px 2px 0;
    padding: 0;
}

.login-form-control .login-options .checkbox.remember-me,
.login-form-control .login-options .checkbox.keep-me-logged-in {
    margin-top: 5px;
}

/* Login Help
   ============================== */

.login-form-control .login-help {
    float: right;
    padding: 6px 0 0 0;
    text-align: right;
}

/* First Time Login
   ============================== */

.login-form-control .first-time-login-panel {
    margin: 20px 0 5px 0;
    text-align: right; 
}

.login-form-control .first-time-login-header {
    display: block;
    font-weight: 600;
    margin-top: 77px;
}

.login-form-control .intro-video-message {
    font-size: 10px;
    margin-bottom: 20px;
}

/* Responsive
   ============================== */

@media (max-width:500px) {
    .login-form-control .sign-in {
        width: 100%;
    }

    .login-form-control .btn-sign-in {
        font-size: 20px;
    }
}

@media (max-width:365px) {
        
    .login-form-control {
        padding: 20px 10px;
    }

    .login-form-control .message-container .page-errors {
        font-size: 11px;
    }
}

/*
*  ----------------------------------------------
*  Checkboxes and radios
*/
/* styling of checkboxes and radio buttons; works in webkit, ff, ie9+ 
by using modernizr classes we can style these just for the modern browsers which makes it easier on the older ones
styling for checkbox directly */

/* styling for inside of span */
.modernizr-borderradius span.style-checkbox input[type=checkbox],
.modernizr-borderradius span.style-checkbox input[type=radio] {
    -ms-opacity: 0;
    opacity: 0;
    position: absolute;
    z-index: 5;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox]:hover,
.modernizr-borderradius span.style-checkbox input[type=radio]:hover {
    cursor: pointer;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox] + label,
.modernizr-borderradius span.style-checkbox input[type=radio] + label {
    cursor: pointer;
    display: inline;
    margin-left: 23px;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox] + label:before,
.modernizr-borderradius span.style-checkbox input[type=radio] + label:before {
    content: "\f096";
    cursor: pointer;
    font: 17px/1em FontAwesome;
    margin-left: -23px;
    padding-right: 6px;
    vertical-align: middle;
    display: inline-block;
    width: 1.28571429em;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox]:checked + label:before,
.modernizr-borderradius span.style-checkbox input[type=radio]:checked + label:before {
    padding-right: 3px;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox] + label:before:hover,
.modernizr-borderradius span.style-checkbox input[type=radio] + label:before:hover {
    cursor: pointer;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox]:checked + label,
.modernizr-borderradius span.style-checkbox input[type=radio]:checked + label {
    color: #333;
}

.modernizr-borderradius .inactive span.style-checkbox input[type=checkbox]:checked + label,
.modernizr-borderradius .inactive span.style-checkbox input[type=radio]:checked + label {
    color: inherit;
}

.modernizr-borderradius span.style-checkbox input[type=checkbox]:checked + label:before,
.modernizr-borderradius span.style-checkbox input[type=radio]:checked + label:before {
    content: "\f046";
}

.modernizr-borderradius span.style-checkbox.disabled-checkbox input[type=checkbox],
.modernizr-borderradius span.style-checkbox.disabled-checkbox input[type=checkbox] + label {
    cursor: default;
}

/*
*  End Checkboxes and radios
*  ----------------------------------------------
*/



.login-page-wrap {
    clear: both;
    padding-top: 15px;
}

.login-page-wrap .sign-in {
    /*float: left;*/
    /*text-align: center;*/
    /*margin-left: 30px;
    margin-right: 15px;*/
    margin: 0 auto;
    max-width: 520px;
    width: 520px;
}

.login-page-wrap .marketing-image-container {
    background: #fff;
    border: 1px solid #c3c3c3;
    float: left;
    width: 480px;
}

.mobileGetStartedButton {
    margin-right: 0 !important;
}

.login-page-wrap .dealer-site-link-container {
    padding-top: 20px;
    text-align: center;
}

.divBtnField {
    right:56px;
}

@media (max-width:991px) {
    .login-page-wrap .sign-in, 
    .login-page-wrap .marketing-image-container {
        float: inherit;
        margin: 0 auto;
        padding: 0;
    }

    .dealer-site-link-container {
        padding-bottom: 20px;
        text-align: center;
    }
}

@media (max-width:746px) {
    .divBtnSearch {
        margin-right:3px;
    }
}

@media (max-width:500px) {
    .login-page-wrap .marketing-image-container {
        display: none;
        width: 100%;
    }

    .login-page-wrap .sign-in {
        width: 100%;
    }
}

div.form-text-box {
    display: inline-block;
    width: 100%;
}

input.login {
    font-size: 18px !important;
}



/**************************** MODAL *********************************/
.forgot-modal {
    padding: 15px;
}

.info-row {
    text-align: center;
}

.modal-background {
    background-color:Black;
    filter:alpha(opacity=60);
    -ms-opacity:0.60;
    opacity:0.60;
}
        
.modal-inner-background {
    background-color: white;
    border-width: 2px;
    border-color: black;
    padding: 20px;
    min-width: 300px;
    max-width: 700px;
}
.modal-header {
    padding: 9px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 16px;
    text-align: center;
}

.modal-body {
    position: relative;
    padding: 20px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    -ms-opacity: 0.2;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.modal-title {
    margin: 0;
    line-height: 1.428571429;
}

.modal-footer {
    padding: 10px;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid #ddd;
    -webkit-border-radius: 0 0 6px 6px;
        -moz-border-radius: 0 0 6px 6px;
            border-radius: 0 0 6px 6px;
    *zoom: 1;
    -webkit-box-shadow: inset 0 1px 0 #ffffff;
        -moz-box-shadow: inset 0 1px 0 #ffffff;
            box-shadow: inset 0 1px 0 #ffffff;
}

.inline-block {
    display: inline-block;
}

.btn {
    display: inline-block;
    display: inline;
    padding: 4px 12px;
    margin-bottom: 0;
    margin-left: .3em;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    -ms-background-repeat: repeat-x;
    background-repeat: repeat-x;
    -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
            border-radius: 4px;
    zoom: 1;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
}

.btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-inverse {
    background-image: none;
    color: #ffffff;
    background-color: #333333;
    border-color: #ccc;
}

.btn-inverse:hover {
    color: #fff;
    border-color: #333;
}

/** Error messaging **/
.error {
    color: red;
}

.message {
    color: green;
}