<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Denied</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
background: #fff;
padding: 30px 50px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2.5rem;
color: #e63946;
margin-bottom: 10px;
}
p {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}
a {
display: inline-block;
text-decoration: none;
color: #fff;
background-color: #007bff;
padding: 10px 20px;
border-radius: 5px;
font-size: 1rem;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #0056b3;
}
.icon {
font-size: 3rem;
color: #e63946;
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🚫</div>
<h1>Access Denied</h1>
<p>Sorry, you don’t have permission to access this page. Please contact the administrator if you think this is a mistake.</p>
<a href="https://getjob.biharbhumisudhar.in/">Go Back to Homepage</a>
</div>
</body>
</html>