﻿@media (max-width: 768px) {
    #logo {
        margin: 20px auto;
    }

        #logo > img {
            width: 90%;
        }

    .login-signup-box {
        margin: 40px auto !important;
        width: 80%;
    }
}

html {
    /*position: relative;*/
    height: 100%;
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
}

body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #787878 !important;
    padding-top: 5px;
    padding-bottom: 20px;
    background: linear-gradient(to bottom, #fdca9d75, #fd6b986e, #6154a366);
    background: -ms-linear-gradient(rgba(253, 202, 157, 0.4588235294117647), rgba(253, 107, 152, 0.43137254901960786), rgba(97, 84, 163, 0.4));
    background-attachment: fixed;
}

.footer {
    margin-top: 15%;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.login-signup-box {
    text-align: center;
    margin-top: 75px;
    margin-left: 30%;
    margin-right: 30%;
    background-color: transparent;
    border: 1px rgba(120, 120, 120, 0.2) solid;
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.login-signup-box a, .login-signup-box a:hover{
    color: #796eff;
}

.login-content-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.login-content-body {
    padding: 20px 20px 20px 20px;
    background-color: #f9f9f9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.login-content-body .form-control{
    border-radius: 0;
    box-shadow: 1px 1px 2px 0.1px rgba(0,0,0,0.16);
    background-color: white;
}

.btn {
    background-color: #796eff;
    color: white;
    box-shadow: 0px 1px 0px rgba(0,0,0,0.19), 0px 0px 10px rgba(0,0,0,0.23);
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

#logo {
    text-align: center;
    margin-top: 12.5%;
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 35px;
}

.login-header {
    padding-top: 15px;
    padding-bottom: 15px;
}

#Login_Btn {
    margin-top: 20px;
    background-color: #A25650;
}

#LoginBanner {
    padding: 20px;
    background-color: #796eff;
    color: white;
    margin-top: -20px;
    margin-right: -20px;
    margin-left: -20px;
    margin-bottom: 20px;
    display: none;
}

.btn.focus, .btn:focus, .btn:hover {
    color: white;
    text-decoration: none;
    outline: 0;
    -webkit-outline: 0;
    -moz-outline: 0;
}

.validation-summary-errors {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    color: #a94442;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
}

.label-cbx {
    user-select: none;
    cursor: pointer;
    margin-bottom: 0;
}

    .label-cbx input:checked + .checkbox {
        border-color: #ff5089;
    }

        .label-cbx input:checked + .checkbox svg path {
            fill: #ff5089;
        }

        .label-cbx input:checked + .checkbox svg polyline {
            stroke-dashoffset: 0;
        }

    .label-cbx:hover .checkbox svg path {
        stroke-dashoffset: 0;
    }

    .label-cbx .checkbox {
        position: relative;
        top: 2px;
        float: left;
        margin-right: 8px;
        margin-top: 0;
        margin-bottom: 0;
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        padding-left: 15px !important;
        box-shadow: 1px 1px 2px 0.1px rgba(0,0,0,0.01);
    }

        .label-cbx .checkbox svg {
            position: absolute;
            top: -2px;
            left: -2px;
            box-shadow: 1px 1px 2px 0.1px rgba(0,0,0,0.1);
        }

            .label-cbx .checkbox svg path {
                fill: none;
                stroke: #ff5089;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 71px;
                stroke-dashoffset: 71px;
                transition: all 0.6s ease;
            }

            .label-cbx .checkbox svg polyline {
                fill: none;
                stroke: #FFF;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 18px;
                stroke-dashoffset: 18px;
                transition: all 0.3s ease;
            }

    .label-cbx > span {
        pointer-events: none;
        vertical-align: middle;
        font-weight: 100;
    }

a {
    color: #787878;
}
a:focus, a:hover {
    color: #787878;
    text-decoration: none;
}

#validationContainer p {
    background-color: #f5e8ed;
    padding: 10px;
    margin: 10px 0px;
}


#validationContainer p.success {
    color: green;
}

#validationContainer p.error {
    color: red;
}

#validationContainer p.success:before {
    content: '✓';
    margin-right: 10px;
}

#validationContainer p.error:before {
    content: '✘';
    margin-right: 10px;
}