.loginWrapper {
    /* background: #f5f5f5; */
    background: url(img/login-bg.jpg) top left no-repeat;
    background-size: cover;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.loginWrapper .login-container {
    width: 100%;
}

.loginBox h4 {
    margin: 30px 0;
    color: #000;
}

.loginFields h4 {
    margin: 20px 0;
}

.loginBtn {
    background: #020281;
    padding: 10px 20px;
    color: #fff;
    border-radius: 2px;
    text-transform: normal;
    font-weight: normal;
    letter-spacing: normal;
    font-size: 16px;
}

.loginBtn:hover {
    color: rgb(100, 214, 248)
}

.rgisterBtn {
    border: 1px solid #020281;
    border-radius: 2px;
    color: #020281;
    font-weight: 600;
}

.loginFields {
    background: rgba(255, 255, 255, .3);
    padding: 30px;
}

.loginFields .form-control {
    height: auto;
    padding: 0.875rem .75rem 0.875rem 3.5rem;
    border-radius: 2px;
    border: 0;
}

.registerBox {
    margin-top: 4rem;
}

.registerBox h5 {
    color: #000;
}

.loginFields i {
    position: absolute;
    left: 25px;
    top: 15px;
    font-size: 18px;
}

.loginFields .form-group {
    position: relative;
    margin-bottom: 15px;
}




/*Styles By Naveen*/

.register h4{
	margin:10px 0;
}

.register span{
	display:block;
	margin-bottom:15px;
}

.loginFields span{
    font-weight: bold;
}

.modal{
    z-index: 9999!important;
}

.box{
    display: none;
    background-color: #ececec;
    border: 2px solid #ffffff;
}

.alert {
    position: absolute;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    width: 250px;
    top: 5%;
    right: 3%;
    display: none;
}

.close{
    position: absolute;
    top:2px;
    right: 5px;
    z-index: 9999;
    color: #00000075!important;
}

.aligh-right{
    text-align: right;
}

.pt-1{
    padding-top: 10px!important;
}

.box .no-border{
    min-height:430px !important;
}

.main-container {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.check-container {
    width: 6.25rem;
    height: 7.5rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

    .check-container .check-background {
        width: 100%;
        height: calc(100% - 1.25rem);
        background: linear-gradient(to bottom right, #5de593, #41d67c);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
        transform: scale(0.84);
        border-radius: 50%;
        animation: animateContainer 0.75s ease-out forwards 0.75s;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
    }

        .check-container .check-background svg {
            width: 65%;
            transform: translateY(0.25rem);
            stroke-dasharray: 80;
            stroke-dashoffset: 80;
            animation: animateCheck 0.35s forwards 1.25s ease-out;
        }

    .check-container .check-shadow {
        bottom: calc(-15% - 5px);
        left: 0;
        border-radius: 50%;
        background: radial-gradient(closest-side, rgba(73, 218, 131, 1), transparent);
        animation: animateShadow 0.75s ease-out forwards 0.75s;
    }

@keyframes animateContainer {
    0% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
    }

    25% {
        opacity: 1;
        transform: scale(0.9);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
    }

    43.75% {
        transform: scale(1.15);
        box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
    }

    62.5% {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
    }

    81.25% {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
    }

    100% {
        opacity: 1;
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
    }
}

@keyframes animateCheck {
    from {
        stroke-dashoffset: 80;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes animateShadow {
    0% {
        opacity: 0;
        width: 100%;
        height: 15%;
    }

    25% {
        opacity: 0.25;
    }

    43.75% {
        width: 40%;
        height: 7%;
        opacity: 0.35;
    }

    100% {
        width: 85%;
        height: 15%;
        opacity: 0.25;
    }
}

.successtext {
    height: auto;
    width: 100%;
    margin: auto;
}

    .successtext p {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
    }

        .successtext p span {
            float: right;
            font-weight: 500;
            color: #020281;
        }
.aligh-center {
    text-align: center;
    display: block;
    margin: auto;
    margin-top: 10px;
    outline: none;
    max-width: 200px;
}
.registerlayout.loginWrapper {
    height: 100%
}
@media (max-width:768px) {
    .registerlayout.loginWrapper {
        height:100%
    }
}
    @media (max-width:576px) {
        .loginpage-f {
            display: flex;
            justify-content: space-between
        }

            .loginpage-f .col-sm-6 {
                width: auto;
            }
    }


