﻿* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px;
}

.login-wrapper {
    height: 100vh;
    background: #F6F6F6;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 1200px;
    height: 80vh;
    max-height: 600px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


    .login-container .left-sec {
        width: 57%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .login-container .left-sec .content-area {
            width: 90%;
            max-width: 320px;
        }

    .login-container .right-sec {
        width: 43%;
        height: 100%;
        background: url(./images/loginbg.svg) bottom center;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
    }

        .login-container .right-sec .content-area {
            text-align: center;
        }

            .login-container .right-sec .content-area .title {
                font-size: 26px;
                font-weight: 400;
                color: #4A4A4A;
                margin-bottom: 10px
            }

            .login-container .right-sec .content-area .para {
                font-size: 14px;
                color: #4A4A4A;
                font-weight: 400;
                line-height: 21px;
            }

.phone-fieldouter {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .phone-fieldouter .field1 {
        width: 50px;
    }

    .phone-fieldouter .field2 {
        width: calc(100% - 60px);
    }

.form-control-wrap {
    position: relative;
    margin-bottom: 20px;
}

.login-form-control {
    display: block;
    padding: 0px 10px;
    border-radius: 2px;
    height: 50px;
    border: 1px solid #E1E1E1;
    background-color: #ffffff;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.31;
    color: #606060;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

.form-control-wrap label.login-control-label {
    font-size: 14px;
    color: #606060;
    font-weight: 300;
    pointer-events: none;
    position: absolute;
    top: 16px;
    z-index: 10;
    left: 10px;
    padding: 0 3px;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    font-family: "Montserrat", sans-serif;
}

.form-control-wrap .login-form-control.active ~ label,
.form-control-wrap .login-form-control:focus ~ label,
.form-control-wrap .login-form-control:valid ~ label {
    top: -10px;
    background: #fff;
    height: auto;
    color: #606060;
    font-weight: 400;
    font-size: 11px;
}

.showpassword .eye-close {
    display: none;
}

.eye-open {
    display: none;
}

.showpassword .eye-open {
    display: block;
    width: 14px;
}

.password-toggle {
    border: 0;
    background: transparent;
    position: absolute;
    right: 4px;
    top: 18px;
    cursor: pointer;
}

    .password-toggle img {
        opacity: 0.3;
        width: 14px;
    }

.login-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 0 10px 0;
    position: relative;
}

.remember-me {
    display: flex;
    align-items: center;
}

    .remember-me .inp-cbx {
        display: none;
    }

    .remember-me .cbx {
        margin: auto;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
    }

        .remember-me .cbx span {
            display: inline-block;
            vertical-align: middle;
            transform: translate3d(0, 0, 0);
        }

            .remember-me .cbx span:first-child {
                position: relative;
                width: 20px;
                height: 20px;
                border-radius: 3px;
                transform: scale(1);
                vertical-align: middle;
                border: 1px solid #E1E1E1;
                transition: all 0.2s ease;
            }

                .remember-me .cbx span:first-child svg {
                    position: absolute;
                    top: 6px;
                    left: 4px;
                    fill: none;
                    stroke: #ffffff;
                    stroke-width: 2;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                    stroke-dasharray: 16px;
                    stroke-dashoffset: 16px;
                    transition: all 0.3s ease;
                    transition-delay: 0.1s;
                    transform: translate3d(0, 0, 0);
                }

                .remember-me .cbx span:first-child:before {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: #D24B2F;
                    display: block;
                    transform: scale(0);
                    opacity: 1;
                    border-radius: 50%;
                }

        .remember-me .cbx:hover span:first-child {
            border-color: #D24B2F;
        }

    .remember-me .inp-cbx:checked + .cbx span:first-child {
        background: #D24B2F;
        border-color: #D24B2F;
        animation: wave 0.4s ease;
    }

        .remember-me .inp-cbx:checked + .cbx span:first-child svg {
            stroke-dashoffset: 0;
        }

        .remember-me .inp-cbx:checked + .cbx span:first-child:before {
            transform: scale(3.5);
            opacity: 0;
            transition: all 0.6s ease;
        }

    .remember-me .cbx-label {
        font-size: 12px;
        font-weight: 500;
        color: #606060;
        font-family: 'Plus Jakarta Sans', sans-serif;
        position: relative;
        left: 10px;
    }

.byjoining {
    font-size: 12px;
    font-weight: 500;
    color: #606060;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    text-align: center;
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

.forgot-password {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    color: #D24B2F;
    font-family: "Montserrat", sans-serif;
}

    .forgot-password:hover {
        color: #F4D566;
    }

.btn-sign-in {
    width: 100%;
    height: 40px;
    background: #D24B2F;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.25s all ease-in-out;
}

    .btn-sign-in:hover {
        background: #F4D566;
    }

.notyet-actions {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #606060;
    font-weight: 400;
}

.create {
    color: #D24B2F;
    text-decoration: none;
    position: relative;
    left: 2px;
}

    .create:hover {
        color: #F4D566;
    }

.login-logo {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-logo-img {
    max-width: 100%;
    max-width: 120px;
}


.alert-error-msg {
    position: absolute;
    width: 100%;
    bottom: -16px;
    left: 0;
    font-size: 10px;
    border-radius: 0;
    color: red;
}

.login-form-control.login-form-error {
    border: 1.2px solid red;
}

    .login-form-control.login-form-error:focus {
        border: 1.2px solid red;
    }

.form-control-wrap .login-form-control.login-form-error ~ label {
    color: red;
}

.form-control-wrap .login-form-control.login-form-error ~ .password-toggle {
    color: #ff343c;
}

.connetc-withus {
    width: 100%;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .connetc-withus::before {
        content: "";
        width: 80%;
        height: 1px;
        position: absolute;
        top: 11px;
        left: 10%;
        background: #E1E1E1;
    }

    .connetc-withus .text {
        font-size: 12px;
        color: #000000;
        background: #fff;
        padding: 0 20px;
        position: relative;
        z-index: 5;
    }

.connect-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .connect-social .icon {
        width: 31px;
        height: 31px;
        margin: 0 5px;
        border: none;
        outline: none;
        cursor: pointer;
    }

        .connect-social .icon img {
            width: 100%;
        }



@media only screen and (max-width: 1300px) {

    .login-wrapper {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 1000px) {

    .login-wrapper {
        height: auto;
        min-height: 100vh;
    }

    .login-container {
        height: auto;
        max-height: inherit;
        background: none;
    }

        .login-container .left-sec {
            width: 100%;
            height: auto;
            padding: 0;
        }

            .login-container .left-sec .content-area {
                width: 100%;
                background: #fff;
                padding: 30px;
                max-width: 50rem;
            }

        .login-container .right-sec {
            display: none;
        }
}

@media only screen and (max-width: 600px) {

    .login-container .left-sec {
        max-width: 100%;
    }

        .login-container .left-sec .content-area {
            max-width: 100%;
        }
}


@media only screen and (max-width: 600px) {
    .login-container {
        flex-wrap: wrap;
    }
}


slider, .slider .imgs {
    width: 100%;
    height: 100%;
    position: relative;
    background: #fff;
}

.slider .imgs {
    display: flex;
    overflow: hidden;
}

.slider .img {
    min-width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    animation: .6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s left;
    animation-fill-mode: forwards;
    background-size: cover !important;
}

    .slider .img:nth-of-type(1) {
        background: url(../../assets/common/images/talos/img1.svg);
    }

    .slider .img:nth-of-type(2) {
        background: url(../../assets/common/images/talos/img2.svg);
    }

    .slider .img:nth-of-type(3) {
        background: url(../../assets/common/images/talos/img1.svg);
    }

    .slider .img span {
        padding: 7px 20px;
        background: rgba(0, 0, 0, .8);
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        color: #f0f0f0;
        font-size: 14px;
        font-family: sans-serif;
    }