/*! _auth.scss | Nephos | CSS Ninja */

/* ==========================================================================
Login / Register page styles
========================================================================== */

/***
TABLE OF CONTENTS
=============================================================================
0. Authentication header
1. Authentication card
=============================================================================
***/

/* ==========================================================================
0. Authentication header
========================================================================== */

.auth-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;

    h2 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.6rem;
        font-weight: 400 !important;
        text-transform: uppercase;
    }

    h3 {
        font-weight: 500;
        color: $primary;
    }

    &.is-centered {
        justify-content: center;
    }

    .brand-filigrane {
        position: absolute;
        top: -15px;
        left: -25px;
        height: 68px;
        opacity: 0.4;
    }
}

/* ==========================================================================
1. Authentication card
========================================================================== */

//Card
.flat-card {

    //Form modifier
    &.is-auth-form {

        // min-height: 445px !important;
        &:hover {
            box-shadow: 0px 5px 43px rgba(0, 0, 0, 0.18);
        }

        .form-title h3 {
            font-size: 1.2rem;
            font-weight: 300 !important;
            text-transform: uppercase;
            padding-bottom: 20px;
        }

        //Modifiers
        .column {
            // &.is-padded {
            //     padding: 40px !important;
            // }

            &.is-mobile-padded {
                padding: 40px;
            }

            &.is-light-padded {
                padding: 15px 40px !important;
            }

            &.image-column {
                display: flex;
                flex-direction: column;
                height: 750px;
                border-right: 1px solid #ededed;

                .login-head {
                    background-color: #262626;
                    padding: 50px 150px 40px;
                    height: 30%;

                    p {
                        color: #fff;
                        line-height: 1.3;
                        font-size: 14px;
                        padding-top: 10px;
                    }
                }

                .nephos-overlay {
                    display: flex;
                    justify-content: space-around;
                    align-items: center;
                    height: 20%;

                    .no-item {

                        img {
                            width: 60%;
                        }

                    }
                }
            }
        }

        //Wrapper
        .store-wrapper {

            height: 50%;

            img {
                display: block;
                height: 100%;
                width: 100%;
            }

            //Title
            .title {
                font-size: 1.6rem;
                letter-spacing: 3px;
                color: $white;
                padding-top: 10px;
                text-transform: uppercase;
                font-weight: 300;
            }

            //Subtitle
            .subtitle {
                font-size: .75rem;
                color: $white;
                padding: 10px 0;
                text-transform: uppercase;
                letter-spacing: 2px;
            }

            //Helios Logo
        }

        //Tabs
        .is-form-tabs {
            margin-bottom: 20px;

            li {
                a {
                    color: $placeholder;
                    font-family: 'Quicksand', sans-serif;
                    text-transform: uppercase;
                    font-size: 85%;
                }

                &.is-active {
                    a {
                        color: #ff6600;
                        border-bottom-color: #ff6600;
                    }
                }
            }
        }

        //Label
        .auth-label {
            font-weight: 500;
            color: #424242;
            font-size: 90%;
            margin: 5px 0;
            display: block;
        }

        //Input
        .input {
            box-shadow: none !important;

            &:focus {
                border-color: $brand-orange;
            }
        }

        //Form control
        .control {
            margin-bottom: 10px;
        }

        //Checkbox
        .checkbox-wrap {
            padding: 0 !important;
            display: flex;
            align-items: center;
            margin-top: 30px;

            &.register-sp {
                margin-top: 246px;
            }

            small {
                font-size: .8rem !important;
                color: #424242;
            }
        }

        //Forgot password Link
        .forgotten {
            font-size: .85rem;
            color: #ff6600;
        }
    }
}