*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
}

.logo-talksy{
    display: none;
}

.header-title{
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    margin: auto;
}

.navbar{
    list-style: none;
    position: relative;
    width: 100%;
    padding: 10px 0;
    left: 0;

}

.navbar.sticky{
    list-style: none;
    padding: 20px 0;
    background: (119, 119, 242)
}

.navbar .header-title{
    list-style: none;
    display: flex;
    align-items:center;
    justify-content: space-between;
}

.navbar .logo a{
    list-style: none;
    position: relative;
    float: center;
    color: #3687A8;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    align-items: center;
}

.navbar .logo a span{
    color: rgb(6, 97, 6);
}

.navbar.sticky .logo a span{
    color:blue;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    list-style-type: none;
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    list-style: none;
    color: #154B62;
    border-bottom: 2px solid hsl(240, 1%, 41%);
    padding-bottom: 5px;
    transition: 0.3s;
}

.menu-bars{
    cursor: pointer;
    display: none;
}

.signup{
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    border-style: none;
    cursor: pointer;
    background-color:rgb(19, 19, 208);
}

.desi{
        position: absolute;
        top: 8;
        width:100%;
        height:90%;
        object-fit: cover;
}
       
.wrapper{
    left: 35%;
    top: 20%;
    position: absolute;
    width: 400px;
    height: 440px;
    background: transparent;
    border:2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: scale(0);
    transition: transform .5s ease, height .2s ease;
}

.wrapper.active-popup{
    transform: scale(1);
}

.wrapper.active{
    height: 490px;
}

.wrapper .form-box{
    width: 100%;
    padding:40px;
}

.wrapper .form-box.login{
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper.active .form-box.login{
    transition: none;
    transform: translateX(-400px);
}
.wrapper .form-box.register{
    position: absolute;
    transition: none;
    transform: translateX(400px);
}

.wrapper.active .form-box.register{
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper .icon-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgb(19, 19, 208);
    font-size: 2em;
    color: rgb(232, 214, 214);
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
}

.form-box h2{
    top: 25%;
    font-size: 2em;
    color: #162938;
    text-align: center;
}

.input-box{
    position: relative;
    width: 100%;
    height:50px;
    border-bottom: 2px solid #162938;
    margin: 30px 0;
    text-align: center;
}

.input-box label{
    position: absolute;
    top:35%;
    left: 5px;
    transform: translate(-50);
    font-size: 1em;
    color: rgb(232, 214, 214);
    font-weight: 500;
    pointer-events: none;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top:-3px;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color:rgb(232, 214, 214);
    font-family: 'Times New Roman', Times, serif;
    padding: 0 45px 0 5px;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2 em;
    color:#162938;
    line-height: 57px;
}

.remember-forgot{
    font-size: .9em;
    color:#162938;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input{
    accent-color: #162938;
    margin-right: 2px;
}

.remember-forgot .a{
    color: #162938;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.btn{
    font-family: 'Times New Roman', Times, serif;
    width: 100%;
    height: 45px;
    background: rgb(23, 23, 169);
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: rgb(232, 214, 214);
    font-weight: 500;
}

.btn:hover{
    background: rgb(6, 97, 6);
}

.login-register{
    font-size: .9em;
    color: #162938;
    text-align: center;
    font-weight: 500;
    margin: 15px 0 10px;
}

.login-register p a {
    color: #162938;
    text-decoration: none;
    font-weight: 600;
}

.login-register p a:hover{
    text-decoration: underline;
}
@media (max-width: 882px){


    .menu-bars{
        display: none;
        align-items: center;
        justify-items: flex-end;
        padding: 0.3px;
        z-index: 9999;
        margin-top: 4px;
    }

    .header-title{
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        margin: auto;
    }

    .logo{
        display: none;
    }

    .logo-talksy{
        display:inline-block;
    }

    
    .signup{
        color: white;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        border-style: none;
        cursor: pointer;
        background-color:rgb(19, 19, 208);
    }

    .navbar .logo a{
        color: rgb(14, 14, 154);
        font-size: 24px;
        font-weight: 600;
    }

    .navbar .menu li a{
        color: black;
        font-size: 15px;
        font-weight: 600;
        margin-left: 25px;
        transition: color 0.3s ease;
    }
    
    .navbar .menu li a:hover{
        color: #154B62;
        border-bottom: 2px solid hsl(240, 1%, 41%);
        padding-bottom: 5px;
        transition: 0.3s;
    }
        
    .header-title{
        padding: 0 50px;
    }

    .menu-img{
        display: none;
    }

    .menu{
        position: absolute;
        clear: both;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0%;
        backdrop-filter: blur(20px);
        background: transparent;
        text-align: center;
        justify-content: center;
        padding-top: 0px;
        transition: all 0.3s ease;
        z-index: 100000;
    }

    .menu.commence{
        position: absolute;
        width: 80%;
        display: grid;
        grid-template-columns: inherit;
        grid-template-rows: 100px 100px 100px 100px;
        grid-gap: 0;
        border-right: solid 2px rgb(19, 19, 208) ;
        left: 0%;
        margin: 0;
        line-height: 3;
        padding-top: 0;
        transition: all 0.3s ease;
        left: 0;
        box-shadow: 0 5px 10px white;
        z-index: 100000;
    }

    .start{
        border: none;
        outline: none;
        margin-top: 30%;
        margin-left: 35%;
        color: var(--white-color);
        padding: 0.5rem 2rem;
        border-radius: 5rem;
        background-color: rgb(6, 97, 6);
        transition: var(--tran-0-3);
        cursor: pointer;
        font-family: 'Times New Roman', Times, serif;
        font-weight: bold;
    }
    
    .start:hover{
        background-color: rgb(19, 19, 208);
    }

    .desi{
        position: absolute;
        top: 8;
        width:100%;
        height:90%;
        object-fit: cover;
}
       
.wrapper{
    left: 5%;
    top: 20%;
    position: absolute;
    width: 90%;
    height: 80%;
    background: transparent;
    border:2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: scale(0);
    transition: transform .5s ease, height .2s ease;
}

.wrapper.active-popup{
    transform: scale(1);
}

.wrapper.active{
    height: 490px;
}

.wrapper .form-box{
    width: 100%;
    padding:40px;
}

.wrapper .form-box.login{
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper.active .form-box.login{
    transition: none;
    transform: translateX(-400px);
}
.wrapper .form-box.register{
    position: absolute;
    transition: none;
    transform: translateX(400px);
}

.wrapper.active .form-box.register{
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper .icon-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgb(19, 19, 208);
    font-size: 2em;
    color: rgb(232, 214, 214);
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
}

.form-box h2{
    top: 25%;
    font-size: 2em;
    color: #162938;
    text-align: center;
}

.input-box{
    position: relative;
    width: 100%;
    height:50px;
    border-bottom: 2px solid #162938;
    margin: 30px 0;
    text-align: center;
}

.input-box label{
    position: absolute;
    top:35%;
    left: 5px;
    transform: translate(-50);
    font-size: 1em;
    color: rgb(232, 214, 214);
    font-weight: 500;
    pointer-events: none;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top:-3px;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color:rgb(232, 214, 214);
    font-family: 'Times New Roman', Times, serif;
    padding: 0 45px 0 5px;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2 em;
    color:#162938;
    line-height: 57px;
}

.remember-forgot{
    font-size: .9em;
    color:#162938;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input{
    accent-color: #162938;
    margin-right: 2px;
}

.remember-forgot .a{
    color: #162938;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.btn{
    font-family: 'Times New Roman', Times, serif;
    width: 100%;
    height: 45px;
    background: rgb(23, 23, 169);
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: rgb(232, 214, 214);
    font-weight: 500;
}

.btn:hover{
    background: rgb(6, 97, 6);
}

.login-register{
    font-size: .9em;
    color: #162938;
    text-align: center;
    font-weight: 500;
    margin: 15px 0 10px;
}

.login-register p a {
    color: #162938;
    text-decoration: none;
    font-weight: 600;
}

.login-register p a:hover{
    text-decoration: underline;
}

    
}