File: /home/owzicwjp/public_html/indventureholidays.com--/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>eDoc | User Portal</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}
/* MAIN BACKGROUND */
body{
min-height:100vh;
background:
linear-gradient(rgba(10, 10, 25, 0.9), rgba(10, 10, 25, 0.9)),
url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
color:#fff;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
/* TECH GLOW SHAPES */
.shape{
position:absolute;
border-radius:50%;
filter:blur(120px);
opacity:.3;
z-index: 1;
animation: float 10s infinite ease-in-out;
}
.shape.one{ width:500px; height:500px; background:#6366f1; top:-150px; left:-100px; }
.shape.two{ width:450px; height:450px; background:#0ea5e9; bottom:-120px; right:-100px; }
@keyframes float {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(20px, -30px); }
}
/* PORTAL CARD */
.portal-wrapper {
position: relative;
z-index: 10;
width: 100%;
max-width: 480px;
padding: 20px;
text-align: center;
}
.brand-section {
margin-bottom: 40px;
}
.brand-section h1 {
font-size: 42px;
font-weight: 800;
letter-spacing: -1px;
background: linear-gradient(to bottom, #fff, #94a3b8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.login-card {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(25px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 60px 45px;
border-radius: 32px;
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
transition: transform 0.3s ease;
}
.login-card:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.2);
}
.login-card i.main-icon {
font-size: 50px;
color: #0ea5e9;
margin-bottom: 25px;
display: block;
}
.login-card h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 12px;
}
.login-card p {
font-size: 15px;
color: rgba(255, 255, 255, 0.6);
line-height: 1.6;
margin-bottom: 35px;
}
/* ACTION BUTTON */
.action-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
width: 100%;
padding: 18px;
background: #fff;
color: #000;
text-decoration: none;
border-radius: 16px;
font-weight: 700;
font-size: 16px;
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
}
.action-btn:hover {
background: #0ea5e9;
color: #fff;
box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}
.action-btn i {
font-size: 18px;
}
/* FOOTER INFO */
.footer-note {
margin-top: 30px;
font-size: 13px;
color: rgba(255, 255, 255, 0.3);
letter-spacing: 0.5px;
}
</style>
</head>
<body>
<div class="shape one"></div>
<div class="shape two"></div>
<div class="portal-wrapper">
<div class="brand-section">
</div>
<div class="login-card">
<i class="fas fa-user-shield main-icon"></i>
<h2>User Login</h2>
<p>Enter the secure portal to manage your IT workspace, track deployments, and access enterprise tools.</p>
<a href="user/user_login.php" class="action-btn">
Login to Workspace <i class="fas fa-chevron-right"></i>
</a>
</div>
<div class="footer-note">
</div>
</div>
</body>
</html>