-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcareer-lab-gate.html
More file actions
153 lines (146 loc) · 4.48 KB
/
career-lab-gate.html
File metadata and controls
153 lines (146 loc) · 4.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign In to Access Career Lab | Simpatico HR</title>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
:root {
--accent: #6366f1;
--accent2: #8b5cf6;
--bg: #020617;
--card: rgba(15,23,42,.65);
--border: rgba(255,255,255,.08);
--text: #f8fafc;
--muted: #94a3b8;
--green: #10b981;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
background:
radial-gradient(circle at 10% 20%, rgba(99,102,241,.15), transparent 40%),
radial-gradient(circle at 90% 80%, rgba(79,70,229,.1), transparent 40%),
var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.gate-card {
background: var(--card);
backdrop-filter: blur(22px);
border: 1px solid var(--border);
border-radius: 32px;
padding: 48px 40px;
max-width: 440px;
width: 100%;
text-align: center;
position: relative;
overflow: hidden;
}
.gate-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
}
.lock-icon {
font-size: 3.5rem;
margin-bottom: 20px;
display: block;
}
.gate-card h1 {
font-size: 1.8rem;
font-weight: 800;
background: linear-gradient(#fff, #94a3b8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 12px;
}
.gate-card p {
color: var(--muted);
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 32px;
}
.feature-list {
text-align: left;
margin-bottom: 32px;
list-style: none;
}
.feature-list li {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 0;
border-bottom: 1px solid var(--border);
font-size: 0.88rem;
color: var(--muted);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .icon {
font-size: 1.1rem;
min-width: 24px;
text-align: center;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 16px;
border-radius: 16px;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
cursor: pointer;
border: none;
font-family: inherit;
transition: all 0.2s;
margin-bottom: 12px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(99,102,241,0.3); }
.btn-secondary { background: transparent; border: 1px solid var(--border); color: #fff; }
.btn-secondary:hover { border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.06); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(16,185,129,0.3); }
.divider {
display: flex; align-items: center; gap: 12px;
margin: 16px 0; color: var(--muted);
font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
}
.divider::before, .divider::after {
content: ''; flex: 1; height: 1px; background: var(--border);
}
@media (max-width: 480px) {
.gate-card { padding: 36px 24px; border-radius: 24px; }
.gate-card h1 { font-size: 1.5rem; }
}
</style>
</head>
<body>
<div class="gate-card">
<span class="lock-icon">🔐</span>
<h1>Career Lab Access</h1>
<p>Sign in with your Simpatico HR account to access AI-powered career tools, mock interviews, and the ATS optimizer.</p>
<ul class="feature-list">
<li><span class="icon">🎯</span> AI Mock Interview with Voice</li>
<li><span class="icon">📊</span> ATS Resume Optimizer</li>
<li><span class="icon">💼</span> Job Portal with AI Screening</li>
<li><span class="icon">🔒</span> Proctored Real Interviews</li>
<li><span class="icon">🌐</span> 12 Languages Supported</li>
</ul>
<a class="btn btn-primary" href="platform/login.html?role=candidate">🔑 Sign In</a>
<div class="divider">New here?</div>
<a class="btn btn-green" href="platform/register-candidate.html">🚀 Create Free Account</a>
<a class="btn btn-secondary" href="index.html">← Back to Home</a>
</div>
</body>
</html>