﻿/*
* ==========================================================
*     LOGIN PAGE
* ==========================================================
*/
.authentication-page {
    position: relative;
}

    .authentication-page::before {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        z-index: -1;
        background: url(../imgs/p_big3.jpg);
        background-size: cover;
        -webkit-filter: blur(10px);
        filter: blur(10px);
        z-index: 1;
        position: absolute;
        top: 0;
        right: 0;
    }

    .authentication-page .container {
        min-width: 100vw;
        min-height: 100vh;
        z-index: 999;
        padding: 20px;
        position: relative;
        justify-content:center;
    }

    .authentication-page .form-holder {
        width: 100%;
        max-width: 600px;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 50px;
    }

        .authentication-page .form-holder .info, .authentication-page .form-holder .form {
            padding: 40px;
            height: 100%;
        }

        .authentication-page .form-holder div[class*='col-'] {
            padding: 0;
        }

        .authentication-page .form-holder .info {
            background: #2ea7e0;
            color: #fff;
        }

            .authentication-page .form-holder .info h1 {
                font-size: 2.5em;
                font-weight: 600;
            }

            .authentication-page .form-holder .info p {
                font-weight: 300;
            }

        .authentication-page .form-holder .form .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .authentication-page .form-holder .form .content {
            width: 100%;
        }

        .authentication-page .form-holder .form form {
            width: 100%;
        }

        .authentication-page .form-holder .form #login, .authentication-page .form-holder .form #register {
            margin-bottom: 20px;
            cursor: pointer;
        }

        .authentication-page .form-holder .form a.forgot-pass, .authentication-page .form-holder .form a.signup {
            font-size: 0.9em;
            color: #85b4f2;
        }

        .authentication-page .form-holder .form small {
            color: #aaa;
        }

        .authentication-page .form-holder .form .terms-conditions label {
            cursor: pointer;
            color: #aaa;
            font-size: 0.9em;
        }

    .authentication-page .copyrights {
        width: 100%;
        z-index: 9999;
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
    }

@media (max-width: 991px) {
    .authentication-page .info, .authentication-page .form {
        min-height: auto !important;
    }
}
