﻿body, html {
    background: #f7f7f7;
    font-family: Nunito, Arial, Helvetica, sans-serif;
}

a {
    color: #3276b1;
    /*border-bottom: 1px dashed #fff;
    text-decoration: none;*/
    transition: all .1s;
    cursor: pointer;
}

    a:hover, a:focus {
        color: #ED1C24;
        /*border-bottom: 1px dashed #ED1C24;*/
        text-decoration: none;
    }

.btn-primary {
    background-color: #3276B1;
    border-color: #3276B1;
    color: #fff !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active {
        background-color: #153260;
        border-color: #153260;
        color: #fff !important;
    }

.smart-form .note {
    float: left;
    margin-top: 0;
}

    .smart-form .note p {
        margin-bottom: 5px;
    }

    .smart-form .note a {
        line-height: 16px;
    }

.btn-login {
    float: right;
}

.separator-title {
    clear: both;
    margin: 35px 0 25px;
    position: relative;
    border-top: 1px dotted #e8e8e8;
}
.separator-title > span {
    padding: 6px 12px 6px 0;
    background-color: #fff;
    position: absolute;
    top: -18px;
    color:#ccc;
}

.login-box {
    margin: 40px 0;
    background: #fff;
    padding: 25px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 7px 20px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 7px 20px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 7px 20px 0px rgba(50, 50, 50, 0.2);
}

    .login-box .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
        padding-bottom: 5px;
        border-bottom: 1px dotted #e8e8e8;
        font-weight: 700;
    }

    .login-box .btn {
        padding: 6px 18px;
        font-size: 14px;
        line-height: 20px;
    }

        .login-box .btn.btn-Facebook, .login-box .btn.btn-Google, .login-box .btn.btn-Twitter {
            padding: 6px 12px;
            border: none;
        }
        .login-box .btn.btn-Facebook {
            background-color: #3b5999;
        }
            .login-box .btn.btn-Facebook:before {
                font-family: 'Font Awesome 5 Brands';
                font-weight: 400;
                content: '\f39e';
            }
        .login-box .btn.btn-Google {
            background-color: #dd4b39;
        }
            .login-box .btn.btn-Google:before {
                font-family: 'Font Awesome 5 Brands';
                font-weight: 400;
                content: '\f1a0';
            }
        .login-box .btn.btn-Twitter {
            background-color: #00acee;
        }

            .login-box .btn.btn-Twitter::before {
                font-family: FontAwesome;
                content: "\f099";
            }

.smart-form fieldset {
    padding: 0;
}

#login-form .form-group {
    position: relative;
}
#login-form .form-group input {
    padding-right: 32px;
}
    #login-form .form-group .fa {
        position: absolute;
        right: 10px;
        top: 44px;
        width: 20px;
        text-align: center;
        opacity: .5;
    }
.validation-summary-errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
    .validation-summary-errors ul li {
        font-size: 14px;
        font-weight: 600;
        color: #F44336;
        margin: 4px 0;
    }