{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'sans-serif';

}

body {
    background: #000000;
}

.header {
    position: fixed;

    top: 0;
    left: 0;
    width: 80%;
    padding: 30px 12.5%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    margin-right: 30px;
}

    .navbar a::after {
        content: '';
        position: absolute;
        left:0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: #ffffff;
        border-radius: 5px; 
        transform: translateY(10px);
        opacity: 0;
        transition: .40s;
    }

    .navbar a:hover::after {
        transform: translateY(0);
        opacity: 1;
    }

.search-bar {
    width:250px;
    height: 45px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
}

    .search-bar input {
        width: 100%;
        background: transparent;
        border: none;
        outline: none;
        font-size: 16px;
        color: #ffffff;
        padding-left: 10px;
    }

        .search-bar input::placeholder {
            color: #ffffff;
        }

    .search-bar button {
        width: 40px;
        height: 45px;
        background: transparent;
        border: none;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

search-bar button i {
    font-size: 24px;
    color: #ffffff;
}

.background {
    width: 100%;
    height: 100vh;
     background-image: url('Assets/Images/hjghbkhjbk.jpg');
    background-repeat:no repeat;
    background-attachment:fixed;
    background-position:center;
    background-size:cover;
    filter: blur(6px);
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 550px;
      background-image: url('Assets/Images/hjghbkhjbk.jpg');
    background-repeat:no repeat;
    background-attachment:fixed;
    background-position:center;
    background-size:cover;
    border-radius: 10px;
    margin-top: 50px;
}

    .container .content {
        position: absolute;
        top: 120;
        left: -8%;
        width: 75%;
        height: 75%;
        background: transparent;
        padding: 80px;
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

.content .logo {
    font-size: 30px;
}

.text-sci h2 {
    font-size: 40px;
    line-height: 1;
}

    .text-sci h2 span {
        font-size: 25px;
    }

.text-sci p {
    font-size: 16px;
    margin: 20px 0;
}

.social-icons a i {
    font-size: 44px;
    color: #ffffff;
    margin-right: 10px;
    transition: .8s ease;
}

.social-icons a:hover i {
    transform: scale(1.5);
}

    .container .logreg-box {
        position: absolute;
        top: 0;
        right: 0;
        width: calc(100% - 58%);
        height: 100%;
        overflow: hidden;
    }

.logreg-box .form-box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(3px);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #ffffff;
}

.logreg-box .form-box.login {
    transform: translateX(0);
    transition: transform .6s ease;
    transition-delay: .7s;
}

.logreg-box.active .form-box.login {
    transform: translateX(430px);
    transition-delay: 0s;
 }

.logreg-box .form-box.register {
    transform: translateX(430px);
    transition: transform .6s ease;
    transition-delay: 0s;
}

.logreg-box.active .form-box.register {
    transform: translateX(0);
    transition-delay: .7s;
}

.form-box h2 {
    font-size: 32px;
}

.form-box .input-box {
    position: relative;
    width: 320px;
    height: 50px;
    border-bottom: transparent;
    margin: 15px 0;
}

.input-box input {
    width: 100%;
    height: 90%;
    background: transparent;
    border-radius: 25px;
    outline: thick;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    padding-right: 30px;
}

.input-box label {
    position: absolute;
    top: 48%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 500;
    pointer-events: none;
    transition: .5s ease;

}


.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: -5px;
}

.input-box .icon {
    position: absolute;
    top: 16px;
    right: 0;
    font-size: 20px;
  
}

.btn {
    width: 100%;
    height: 45px;
    background: #3295f3;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    outline: thick;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.8;
    transition: 0.3s;
}

    .btn:hover {
        opacity: 1.2
    }

.form-box .login-register {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 15px;
}

.login-register p a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

    .login-register p a:hover {
        text-decoration: underline;
    }