﻿.login-container {
    min-height: 500px;
    margin: 0px auto;
    background: #FFF;
    display: flex;
    flex-direction: column;
    -webkit-animation: hi 0.5s;
    animation: hi 0.5s;
    -webkit-transform: translateZ(0px);
}


.pages {
    flex: 1;
    white-space: nowrap;
    position: relative;
    transition: all 0.4s;
    display: flex;
}

    .pages .page {
        min-width: 100%;
        padding: 20px 15px;
        padding-top: 0px;
    }

        .pages .page:nth-of-type(1) .input {
            -webkit-transform: translateX(-100%) scale(0.5);
            transform: translateX(-100%) scale(0.5);
        }

        .pages .page:nth-of-type(2) .input {
            -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5);
        }

        .pages .page:nth-of-type(3) .input {
            -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5);
        }

        .pages .page:nth-of-type(4) .input {
            -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5);
        }

        .pages .page .input {
            transition: all 1s;
            opacity: 0;
            transition-delay: 0s;
        }

        .pages .page .title {
            margin-bottom: 10px;
            font-size: 14px;
            position: relative;
            line-height: 14px;
        }

            .pages .page .title i {
                vertical-align: text-bottom;
                font-size: 19px;
            }

        .pages .page .input {
            margin-top: 20px;
        }

        .pages .page input.text {
            background: #F6F7F9;
            border: none;
            border-radius: 4px;
            width: 100%;
            height: 40px;
            line-height: 40px;
            padding: 0px 10px;
            color: rgba(0, 0, 0, 0.5);
            outline: none;
        }

        .pages .page input[type=submit] {
            background: rgba(0, 0, 0, 0.5);
            color: #F6F7F9;
            height: 40px;
            line-height: 40px;
            width: 100%;
            border: none;
            border-radius: 4px;
            font-weight: 600;
        }

input[type=radio] {
    display: none;
}

    input[type=radio]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) {
        box-shadow: inset -3px 2px 5px rgba(0, 0, 0, 0.25);
        color: #3F4C7F;
    }

        input[type=radio]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) .text {
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
        }

    input[type=radio]:nth-of-type(1):checked ~ .pages {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

        input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input {
            opacity: 1;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
            transition: all 0.5s;
        }

            input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(1) {
                transition-delay: 0.2s;
            }

            input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(2) {
                transition-delay: 0.4s;
            }

            input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(3) {
                transition-delay: 0.6s;
            }

            input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(4) {
                transition-delay: 0.8s;
            }

            input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(5) {
                transition-delay: 1s;
            }

    input[type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) {
        box-shadow: inset 3px 2px 5px rgba(0, 0, 0, 0.25);
        color: #3F4C7F;
    }

        input[type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) .text {
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
        }

    input[type=radio]:nth-of-type(2):checked ~ .pages {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

        input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input {
            opacity: 1;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
            transition: all 0.5s;
        }

            input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(1) {
                transition-delay: 0.2s;
            }

            input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(2) {
                transition-delay: 0.4s;
            }

            input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(3) {
                transition-delay: 0.6s;
            }

            input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(4) {
                transition-delay: 0.8s;
            }

            input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(5) {
                transition-delay: 1s;
            }

    input[type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) {
        box-shadow: inset 3px 2px 5px rgba(0, 0, 0, 0.25);
        color: #3F4C7F;
    }

        input[type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) .text {
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
        }

    input[type=radio]:nth-of-type(3):checked ~ .pages {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }

        input[type=radio]:nth-of-type(3):checked ~ .pages .page:nth-of-type(3) .input {
            opacity: 1;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
            transition: all 0.5s;
        }

            input[type=radio]:nth-of-type(3):checked ~ .pages .page:nth-of-type(3) .input:nth-child(1) {
                transition-delay: 0.2s;
            }

            input[type=radio]:nth-of-type(3):checked ~ .pages .page:nth-of-type(3) .input:nth-child(2) {
                transition-delay: 0.4s;
            }

            input[type=radio]:nth-of-type(3):checked ~ .pages .page:nth-of-type(3) .input:nth-child(3) {
                transition-delay: 0.6s;
            }

            input[type=radio]:nth-of-type(3):checked ~ .pages .page:nth-of-type(3) .input:nth-child(4) {
                transition-delay: 0.8s;
            }

            input[type=radio]:nth-of-type(3):checked ~ .pages .page:nth-of-type(3) .input:nth-child(5) {
                transition-delay: 1s;
            }

/*SSO Login Page*/
    input[type=radio]:nth-of-type(4):checked ~ .pages {
        -webkit-transform: translateX(-300%);
        transform: translateX(-300%);
    }

        input[type=radio]:nth-of-type(4):checked ~ .pages .page:nth-of-type(4) .input {
            opacity: 1;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
            transition: all 0.5s;
        }

            input[type=radio]:nth-of-type(4):checked ~ .pages .page:nth-of-type(4) .input:nth-child(1) {
                transition-delay: 0.2s;
            }

            input[type=radio]:nth-of-type(4):checked ~ .pages .page:nth-of-type(4) .input:nth-child(2) {
                transition-delay: 0.4s;
            }

            input[type=radio]:nth-of-type(4):checked ~ .pages .page:nth-of-type(4) .input:nth-child(3) {
                transition-delay: 0.6s;
            }

            input[type=radio]:nth-of-type(4):checked ~ .pages .page:nth-of-type(4) .input:nth-child(4) {
                transition-delay: 0.8s;
            }

            input[type=radio]:nth-of-type(4):checked ~ .pages .page:nth-of-type(4) .input:nth-child(5) {
                transition-delay: 1s;
            }

@-webkit-keyframes hi {
    from {
        -webkit-transform: translateY(50%) scale(0, 0);
        transform: translateY(50%) scale(0, 0);
        opacity: 0;
    }
}

@keyframes hi {
    from {
        -webkit-transform: translateY(50%) scale(0, 0);
        transform: translateY(50%) scale(0, 0);
        opacity: 0;
    }
}

.d-login__alert {
    margin-top: 25px;
    white-space: normal;
}

input.error,
textarea.error,
select.error {
    border: 1px solid #dc3545 !important;
}

.fa-spinner.ng-animate {
    transition: 0s none;
    -webkit-transition: 0s none;
    animation: 0s none;
    -webkit-animation: 0s none;
}

.input-with-icon {
    position: relative;
}

.icon-inside {
    position: absolute;
    left: 16px;
    top: 22px;
    pointer-events: none;
    font-size: 12px;
    font-size: .75rem;
    z-index: 3;
    opacity: .75;
}

.form-control-lg {
    padding-left: 40px;
}

.copyright {
    text-shadow: 0px 0px 8px #000000;
}


@media (max-width: 1300px) {
    .auth .login-half-bg {
        background: url("../images/auth/portal-login-mobile.png") !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-color: #1672fd;
        background-position: center !important;
    }
}
@media (max-width: 992px) {
    .auth .login-half-bg {
        background: url("../images/auth/portal-login-min.png") !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-color: #1672fd;
        background-position: center !important;
    }
}

@media (max-width: 470px) {
    .auth .login-half-bg {
        background: url("../images/auth/portal-login-mobile.png") !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-color: #1672fd;
        background-position: center !important;
    }
}


.auth .brand-logo {
    margin-left: 14px;
}

.auth .login-half-bg {
    background: url("../images/auth/portal-login-min.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #1672fd;
    background-position: center;
}

@media (min-width: 768px) {
    .auth.auth-img-bg .auth-form-transparent {
        width: 75%;
        margin: auto;
    }
}

/*@media screen and (max-width: 1200px) {
	.mobile-fix {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 1200px) {
	.form-width {
		max-width: 100%;
	}
}*/
