﻿.logoCont,
.logoCont2 {
    margin-top: 32px;
    margin-bottom: 32px;
}

.logoCont2 {
    display: none;
}

.container-fluid {
    padding-right: 32px;
    padding-left: 32px;
}

.banner_ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #005da4;
    text-align: center;
}

    .banner_ribbon #divTitle {
        color: #ffffff;
        margin-top: 15px;
    }

.banner_ribbon {
    display: none;
}

.pageDesc {
    display: block;
    text-align: center;
    margin-bottom: 24px;
    padding-top: 32px;
}

    .pageDesc .header {
        font-size: 18px;
        font-weight: bold;
    }

    .pageDesc p {
        margin-top: 24px;
        margin-bottom: 0px;
    }

.content {
    display: block;
    text-align: center;
    margin-bottom: 0px;
}


.form-group.input {
    background-color: #F7F7F7;
    padding-top: 15px;
    margin-bottom: 16px;
}

input.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #a3a3a3;
    box-shadow: none;
    padding-top: 0;
    border-radius: 0;
    height: 46px;
    font-size: 16px;
}

    input.form-control::placeholder {
        font-weight: bold;
    }

    input.form-control:focus,
    input.form-control.valid {
        border-bottom: 2px solid #337AB7;
        box-shadow: none;
    }

.form-group.input label {
    color: #337AB7;
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0;
    margin-left: 12px;
    opacity: 0;
    position: absolute;
    margin-top: -56px;
}

.form-group-check {
    margin-top: 8px;
    margin-bottom: 20px;
}

    .form-group-check label {
        vertical-align: top;
    }

input.form-control:focus + label,
input.form-control.valid + label {
    opacity: 1;
}

input.form-control.input-validation-error {
    border-bottom: 2px solid #C4161C;
}

    input.form-control.input-validation-error::placeholder {
        color: #C4161C;
    }

    input.form-control.input-validation-error + label {
        opacity: 0;
    }

span.field-validation-error,
span.field-validation-valid {
    display: none;
    margin-top: -16px;
    padding: 5px 12px;
    font-size: 12px;
}

span.field-validation-error {
    display: block;
}

button.btn.btn-block {
    background-color: #005da4;
    color: #ffffff;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

div#forgotPassCont,
.secondaryLink {
    text-align: center;
    margin-top: 18px;
}

.secondaryLink {
    text-transform: uppercase;
}

div#forgotPassCont a:link,
div#forgotPassCont a:visited {
    display: inline-block;
    height: 40px;
    width: 100%;
    padding-top: 10px;
    color: #005da4;
    text-transform: uppercase;
}

/* Checkbox and radio button Style begin */
.dfSelector {
    margin: 15px 0px;
}

.dfSelectorRadio {
    margin-left: -15px;
}

.dfSelector input[type=radio] {
    display: none;
}

    .dfSelector input[type=radio] ~ label {
        font-size: 1em;
        font-weight: normal;
        margin-left: 20px;
        cursor: pointer;
    }

        .dfSelector input[type=radio] ~ label::before {
            content: '';
            position: absolute;
            height: 17px;
            width: 17px;
            border-radius: 100%;
            border: 1px solid #666666;
            margin-left: -25px;
        }

        .dfSelector input[type=radio] ~ label::after {
            content: '';
            position: absolute;
            left: 0;
            height: 11px;
            width: 11px;
            margin: 3px 0px 0px 18px;
            border-radius: 100%;
            background-color: transparent;
            transition: all .3s ease-out;
        }

    .dfSelector input[type=radio]:checked ~ label::after {
        background-color: #013e75;
    }

.dfSelector input[type=checkbox] {
    opacity: 0;
}

    .dfSelector input[type=checkbox] + label {
        position: relative;
        font-size: 1em;
        font-weight: normal;
        cursor: pointer;
        padding-left: 10px;
    }

        .dfSelector input[type=checkbox] + label::before,
        .dfSelector input[type=checkbox] + label::after {
            content: '';
            display: inline-block;
            position: absolute;
            border-radius: 0px;
        }

        .dfSelector input[type=checkbox] + label::before {
            height: 17px;
            width: 17px;
            border: 1px solid #666666;
            left: -17px;
        }

        .dfSelector input[type=checkbox] + label::after {
            height: 12px;
            width: 7px;
            margin: 1px 0px 0px 7px;
            border: 3px solid transparent;
            border-left: none;
            border-top: none;
            background-color: transparent;
            transform: rotate(45deg);
            transition: all .2s ease;
            left: -19px;
        }

    .dfSelector input[type=checkbox]:checked + label::after {
        border-color: #013e75;
    }

.dfxSelector input[type=checkbox]:focus + label::before {
    outline: 1px solid #5f9ace;
}

.dfSelector input[type=checkbox]:disabled + label::before {
    background-color: #a3a3a3;
    border: 1px solid #666666;
}
/* Checkbox and radio button Style end */

/* Page level Alert */
.alert {
    border-radius: 0px;
    text-align: center;
    color: #333;
    font-size: 1em;
}

    .alert .fa {
        font-size: 1em;
    }

.alert-success {
    background-color: #EAF4E6;
    border-color: #018a04;
}

    .alert-success i,
    .alert-success strong,
    .alert-success a {
        color: #018a04;
    }

.alert-info {
    background-color: #E3EDF9;
    border-color: #005da4;
}

    .alert-info i,
    .alert-info strong,
    .alert-info a {
        color: #005da4;
    }

.alert-warning {
    background-color: #fbf8e2;
    border-color: #f8951d;
}

    .alert-warning i,
    .alert-warning strong,
    .alert-warning a {
        color: #c4161c;
    }

.alert-danger {
    background-color: #f2dfdf;
    border-color: #c4161c;
}

    .alert-danger i,
    .alert-danger strong,
    .alert-danger a {
        color: #c4161c;
    }

.alert .close .fa {
    opacity: 1;
    text-shadow: none;
    font-size: 1em;
    color: #212121;
}

.panelNoBottom {
    margin-bottom: 0px;
}
#divMessage {
    padding-top: 32px;
}
/* Page level Alert end */
@media only screen and (min-width:992px) {
    .panelNoBottom {
        margin-bottom: 20px;
    }

    .loginCont {
        padding: 24px;
        box-shadow: 0 0 10px #cccccc;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .logoCont2 {
        display: block;
    }

    .form-group.input {
        background-color: transparent;
        padding-top: 25px;
        margin-bottom: 25px;
    }

    input.form-control {
        background-color: transparent;
        border: 1px solid #cccccc;
        padding-top: 6px;
    }

        input.form-control:focus,
        input.form-control.valid {
            border: 1px solid #212121;
            border-bottom: 1px solid #212121;
        }

        input.form-control::placeholder {
            opacity: 0;
        }

    .form-group.input label {
        color: #212121;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 0;
        margin-left: 0px;
        opacity: 1;
        position: absolute;
        margin-top: -67px;
    }

    span.field-validation-error,
    span.field-validation-valid {
        display: none;
        margin-top: -26px;
        padding: 2px;
        padding-bottom: 7px;
        font-size: 12px;
    }

    input.form-control.input-validation-error {
        border: 1px solid #C4161C;
    }

        input.form-control.input-validation-error::placeholder {
            opacity: 0;
        }

        input.form-control.input-validation-error + label {
            opacity: 1;
            color: #C4161C;
        }

    .form-group-check label {
        vertical-align: middle;
        padding-left: 5px;
        display: inline-block;
    }

    span.field-validation-error {
        display: block;
    }

    .form-group-check {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    button.btn.btn-block {
        text-transform: capitalize;
    }

    .secondaryLink {
        text-transform: none;
    }

    div#forgotPassCont,
    .secondaryLink {
        margin-top: 5px;
    }

        div#forgotPassCont a:link,
        div#forgotPassCont a:visited,
        .secondaryLink a:link,
        .secondaryLink a:visited {
            display: inline;
            color: #005da4;
            text-transform: initial;
        }
}

/* check box styling*/

.chckBox {
    padding-bottom: 18px;
}

    .chckBox .radio {
        padding-bottom: 6px;
    }


/*#region Password reset related pages */
/*.banner_ribbon {
    background-color: rgba(75, 76, 80, 1);
    background-image: url("../../../Images/HeaderBG.png");
    background-repeat: repeat-x;
    background-position: 0 -70px;
    margin: -5px -3px 0 -3px;
    height: 46px;
    box-shadow: 0 0 3px 2px #262626;
}

.checkMark {
    background-color: white;
}*/

/*#endregion*/

/*#region Login page*/
/*.btn-primary:first-letter {
    text-decoration: underline;
}

.toggle.ios, .toggle-on.ios, .toggle-off.ios {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.toggle.ios .toggle-handle {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}*/
/*#endregion*/
