*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
    background: black;

}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:25px 12.5%;
    background-color: transparent;
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index:100;
}
.navbar a{
    position:relative;
    text-decoration:none;
    color:#e4e4e4;
    font-size:16px;
    margin-right:30px;
    font-weight:500;
}
.navbar a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:#e4e4e4;
    border-radius:2px;
    transform:translateY(10px);
    transition:0.4s ease;
    opacity:0.5;
}

.navbar a:hover::after{
    transform:translateY(0);
    opacity:1.5;

}


.search-bar input{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    font-size:16px;
    color:white;
}

.container{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:75%;
    height:550px;
    background:url("DSCE\ main.jpg") no-repeat;
    background-size:cover;
    background-position: center;
    border-radius:10px;
    margin-top:20px;
}

.container .content{
    position:absolute;
    top:0;
    left:0;
    width:58%;
    height:100%;
    background:none;
    padding:80px;
    color:black;
    display:flex;
    justify-content: space-evenly;
    align-items: end;
    flex-direction: column;
    
}

.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: 22px;
    margin-right:10px;
    color:black;
    transition: .5s ease;
}

.social-icons a:hover i{
    transform: scale(1.2);
}

.container .logreg-box{
    position:absolute;
    top:0;
    right:0;
    width:42%;
    height:100%;
    
}

.logreg-box .form-box{
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items:center;
    backdrop-filter: blur(15px);
    background: transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color:white;
}

.form-box h2{
    font-size:32px;
    text-align:center;
}

.form-box .input-box{
    position:relative;
    width:340px;
    height:50px;
    border-bottom:2px solid white;
    margin:30px 0;
}

.input-box input{
    width:100%;
    height:100%;
    background: transparent;
    border:none;
    outline:none;
    font-size:16px ;
    color:white;
    font-weight:500px;

}

.input-box label{
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    font-size:16px;
    font-weight:500;
    pointer-events: none;
    transition: .5s ease;

}

.input-box input:focus~label,
.input-box input:focus~label{
    top:-5px;
}

.input-box .icon{
    position:absolute;
    top:13px;
    right:0;
    font-size:19px;

}
.form-box .remember-forget{
    font-size:14.5px;
    font-weight:500;
    margin:-15px 0 15px;
    display:flex;
    justify-content:space-between;
}

.remember-forget label input{
    accent-color: white;
    margin-right:3px;
}

.remember-forget a{
    color:white;
    text-decoration: none;
}

.remember-forget a:hover{
    text-decoration: underline;
}

button{
    background: none;
    border-radius:10px;
    color:white;
    padding:10px 145px;
    font-size:18px;
    
}

button:hover{
    background-color: rgb(27, 139, 204);
    color:black;
    
}
.login-register{
    margin-top:20px;
    display:flex;
    gap:5px;
    justify-content: center;
}
.login-register a{
    color:white;
    text-decoration: none;

}

.login-register a:hover{
    text-decoration: underline;
}