( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Denied - Brand AI</title>
<link href="<?php echo BASE_URL; ?>/css/material-icons.css" rel="stylesheet">
<link href="<?php echo BASE_URL; ?>/css/roboto.css" rel="stylesheet">
<style>
:root {
--color-primary: #ffd843;
--color-secondary: #03a9f4;
--color-text: #333;
--font-family: 'Roboto', sans-serif;
}
body {
font-family: var(--font-family);
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
color: var(--color-text);
}
.container {
background: white;
padding: 48px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
text-align: center;
max-width: 480px;
width: 90%;
transition: transform 0.3s ease;
}
.icon-lock {
font-size: 72px;
color: var(--color-secondary);
margin-bottom: 24px;
background: rgba(3, 169, 244, 0.1);
padding: 20px;
border-radius: 50%;
}
h1 {
font-size: 28px;
margin-bottom: 16px;
font-weight: 700;
color: #222;
}
p {
font-size: 16px;
line-height: 1.6;
color: #555;
margin-bottom: 32px;
}
.btn {
display: inline-block;
background-color: var(--color-primary);
color: #000;
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(255, 216, 67, 0.3);
}
.btn:hover {
background-color: #ffc343;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(255, 216, 67, 0.4);
}
.brand-logo {
font-weight: 900;
font-size: 1.5rem;
margin-bottom: 40px;
display: block;
letter-spacing: 1px;
color: #000;
}
</style>
</head>
<body>
<div class="container">
<div class="brand-logo">Brand AI</div>
<div>
<i class="material-icons icon-lock">lock_outline</i>
</div>
<h1>Access Denied</h1>
<p>You are unauthorised to access this design.<br>
Please ask the owner of the resource to share it with you.</p>
<a href="/" class="btn">Back to Home</a>
</div>
</body>
</html>