*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:#f4f7fb;
    color:#111827;
}

.topbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    z-index:100;
}

.logo img{
    width:70px;
}

.language{
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.login-wrapper{
    display:flex;
    width:100%;
    height:100vh;
}

.left-side{
    width:45%;
    height:100vh;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px;
}

.login-form{
    width:100%;
    max-width:520px;
}

.login-form h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:45px;
}

.login-form label{
    display:block;
    margin-bottom:10px;
    font-size:16px;
    font-weight:600;
}

.password-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;
}

.password-header a{
    text-decoration:none;
    color:#2563eb;
    font-size:15px;
}

.login-form input{
    width:100%;
    height:58px;
    border:1px solid #d6dce7;
    border-radius:8px;
    padding:0 18px;
    font-size:17px;
    background:#fff;
    margin-bottom:20px;
}

.login-form input:focus{
    outline:none;
    border-color:#4f46e5;
}

.password-box{
    position:relative;
}

.password-box span{
    position:absolute;
    right:20px;
    top:18px;
    cursor:pointer;
    font-size:22px;
}button{
    width:100%;
    height:58px;
    border:none;
    border-radius:8px;
    background:#2563eb;
    color:#fff;
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#1d4ed8;
}

.register{
    margin-top:25px;
    text-align:center;
    font-size:16px;
}

.register a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.divider{
    display:flex;
    align-items:center;
    margin:35px 0;
}

.divider::before,
.divider::after{
    content:"";
    flex:1;
    height:1px;
    background:#d6dce7;
}

.divider span{
    margin:0 15px;
    color:#777;
}

.nafath{
    background:#0f172a;
}

.nafath:hover{
    background:#1e293b;
}

.right-side{
    width:55%;
    height:100vh;
    background-image:url("../images/login.jpg");
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}

.icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}



@media(max-width:992px){

.login-wrapper{
    flex-direction:column;
}

.left-side,
.right-side{
    width:100%;
}

.right-side{
    height:400px;
}
}
.hero-content{
    left:35px;
    top:60px;
    width:85%;
}

.hero-content h2{
    font-size:38px;
    line-height:48px;
}

.topbar{
    padding:0 20px;
}

.left-side{
    padding:40px 25px;
}

