
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<title>شغل بین</title>

<style>
body{
margin:0;
font-family:tahoma;
background:#f1f5ff;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
}

.box{
background:white;
padding:50px;
border-radius:20px;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

h1{
color:#4361ee;
}

p{
color:#555;
line-height:2;
}

.status{
margin-top:20px;
background:#eef2ff;
padding:10px 25px;
border-radius:30px;
display:inline-block;
}

</style>

</head>

<body>

<div class="box">

<h1>سامانه شغل بین</h1>

<p>
سایت موقتاً در دسترس نیست
<br>
تیم فنی در حال بررسی می‌باشد
</p>

<div class="status">
در حال بررسی
</div>

</div>

<script>
setTimeout(function(){
location.reload();
},30000);
</script>

</body>
</html>