﻿
h1 {
    font-size: 30px!important;
    color: #000!important;
    font-weight: 700!important;
    text-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.input-group {
    width: 100%;
}

.error {
    display: none;
    position: absolute;
    top: 27px;
    right: -55px;
    width: 40px;
    height: 40px;
    background: #2d2d2d; /* browsers that don't support rgba */
    background: rgba(45,45,45,.25);
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

    .error span {
        display: inline-block;
        margin-left: 2px;
        font-size: 40px;
        font-weight: 700;
        line-height: 40px;
        text-shadow: 0 1px 2px rgba(0,0,0,.1);
        -o-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

.connect {
    width: 305px;
    margin: 35px auto 0 auto;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,.2);
}

    .connect a {
        display: inline-block;
        width: 32px;
        height: 35px;
        margin-top: 15px;
        -o-transition: all .2s;
        -moz-transition: all .2s;
        -webkit-transition: all .2s;
        -ms-transition: all .2s;
    }

        .connect a.facebook {
            background: url(../img/facebook.html) center center no-repeat;
        }

        .connect a.twitter {
            background: url(../img/twitter.html) center center no-repeat;
        }

        .connect a:hover {
            background-position: center bottom;
        }

* {
    box-sizing: border-box;
}


.sign-in-container h1 {
    font-weight: bold;
    margin: 0;
}

.sign-in-container h2 {
    text-align: center;
    color: #fff;
}

.sign-in-container p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.sign-in-container span.ghost {
    font-size: 15px;
    cursor: pointer;
}

    .sign-in-container span.ghost a {
        font-size: 17px;
    }

        .sign-in-container span.ghost a:hover {
            text-decoration: none;
        }

.sign-in-container a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.sign-in-container .button {
    border-radius: 20px;
    border: 1px solid #02387a;
    background-color: #02387a;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px !important;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    -moz-box-shadow: 0 15px 30px 0 rgba(255,255,255,.25) inset, 0 2px 7px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 15px 30px 0 rgba(255,255,255,.25) inset, 0 2px 7px 0 rgba(0,0,0,.2);
    box-shadow: 0 15px 30px 0 rgba(255,255,255,.25) inset, 0 2px 7px 0 rgba(0,0,0,.2);
}

    .sign-in-container .button:active {
        transform: scale(0.95);
    }

    .sign-in-container .button:focus {
        outline: none;
    }

    .sign-in-container .button.ghost {
        /*background-color: transparent;
        border-color: #FFFFFF;*/
    }



.sign-in-container .logo img {
    width: 30%;
}

.sign-in-container .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 5px;
    height: 100%;
    text-align: center;
    position: relative;
    width: 80%;
    margin: 15px auto 0 auto;
}

input, select, textarea {
    background-color: white !important;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.inner-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 70%;
    max-width: 100%;
    /*min-height: 560px;*/
    margin-top: 2%;
}

.form-container {
  /*  position: absolute;
    top: 0;*/
    height: 100%;
    transition: all 0.6s ease-in-out;
    background-color: #fff;
}

/*.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}*/

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

/*.sign-up-container {
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
}*/

.container.right-panel-active .sign-up-container {
   /* transform: translateX(100%);*/
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.form-box {
    width: 100%;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

/*.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}*/

.overlay {
    background: #20508a;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #81008b, #c828d4);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

    .overlay-panel img {
        width: 90%
    }

/*.overlay-left {
    transform: translateX(-20%);
}*/
/*
.container.right-panel-active .overlay-left {
    transform: translateX(0);
}*/

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    border: 1px solid #DDDDDD;
    border-radius: 25px;
    padding: 0 20px;
}

    .social-container:hover {
        border: 1px solid #fff;
        background-color: #02387a;
        color: #FFFFFF;
    }

    .social-container a {
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #2d2d2d
    }

        .social-container a:hover {
            text-decoration: none;
            color: #FFFFFF;
        }

    .social-container i {
        margin-right: 10px;
    }

footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
}

    footer p {
        margin: 10px 0;
    }

    footer a {
        color: #3c97bf;
        text-decoration: none;
    }

.cust-head {
    background: linear-gradient(to right, #26558d, #3472bf);
    color: #fff;
}

.input_user_index3 {
    border: none;
    border-bottom: 1px solid #0e439e;
    background: #fff;
    box-shadow: 1px 1px 1px rgba(14, 67, 158, 1);
    padding-left: 32px;
    height: 40px;
}

.input-lg {
    border: none;
    border-bottom: 1px solid #0e439e;
    background: #fff;
    box-shadow: 1px 1px 1px rgba(14, 67, 158, 1);
    padding-left: 32px;
    height: 40px;
}

.cus-form {
    position: absolute;
    left: 0;
    /* top: 0; */
    margin: 15px 0 0 15px;
}

.dv-c-6 {
    width: 50%;
    padding: 0px 12px;
}


@media (max-width: 576px) {
    .overlay-container {
        display: inline-block;
    }

    .dv-c-6 {
        width: 50% !important;
        padding: 0px 12px !important;
    }

    .form-container {
        position: absolute;
        top: 0;
        height: auto !important;
        transition: all 0.6s ease-in-out;
        background-color: #fff;
    }

    .inner-container {
        width: 90% !important;
       /* overflow: scroll !important;*/
       /* min-height: -webkit-fill-available !important;*/
    }

    .sign-in-container {
        width: 100% !important;
        position: absolute;
        top: 0;
    }

    .sign-up-container {
        left: 0;
        width: 100% !important;
        opacity: 0;
        z-index: 1;
    }

    .container.right-panel-active .sign-up-container {
        transform: translateX(0%) !important;
    }

    .inner-container {
        min-height: 703px;
        margin: 10px 20px !important;
    }
}

@media (max-width: 340px) {
   

    .sign-in-container {
        width: 100%;
        position: absolute;
        top: 0;
    }

    .sign-up-container {
        left: 0;
        width: 100%;
        opacity: 0;
        z-index: 1;
    }

    .container.right-panel-active .sign-up-container {
        transform: translateX(0%);
    }

    .inner-container {
        min-height: 703px;
    }
}

.r-t {
    top: 5px;
    right: 0;
    z-index: 99999;
}

.sign-in-container p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.sign-in-container span {
    font-size: 12px;
}

.sign-in-container a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.sign-in-container button {
    border-radius: 20px;
    border: 1px solid #81008b;
    background-color: #81008b;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

/*.social-container .logo {
    margin-bottom: 20px;
}
*/
.sign-in-container button:active {
    transform: scale(0.95);
}

.sign-in-container button:focus {
    outline: none;
}

.sign-in-container button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.sign-in-container form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

.sign-in-container input {
    background-color: #eee;
    border: none;
    padding: 5px 10px;
    margin: 4px 0;
    width: 100%;
}

.sign-in-container .inner-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
    position: relative;
    overflow: hidden;
    width: 70%;
    max-width: 100%;
    min-height: 560px;
    margin: 2% auto 0;
}

.sign-in-container .form-container {
    position: absolute;
    top: 0;
    /*  height: 100%;*/
    transition: all 0.6s ease-in-out;
}
/*
.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}*/

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-up-container {
  /*  transform: translateX(100%);*/
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}




.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

/*.container.right-panel-active .overlay-left {
    transform: translateX(0);
}*/

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container:hover {
    background-color: inherit !important;
    border: inherit !important;
    border-radius: inherit !important;

}

.social-container {
    border: inherit !important;
}

.form-control {
    line-height: 2 !important;
    border: inherit;
    margin-top: 25px !important;
    box-shadow: 0px 2px 4px 0px #012c74;
}

    .form-control:focus {
        box-shadow: inherit;
    }

.custom-select {
    box-shadow: 0px 2px 4px 0px #012c74;
}

#btnLogin {
    cursor: pointer;
}

.header-transparent {
    position: relative !important;
    width: 100% !important;
    background: #0179b8 !important;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%) !important;
}

.site-footer.style-2 {
    margin-top: 20px;
}

footer h2 {
    color: #262626 !important;
}
