Free voucher giveaways
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
/* Header Styles */
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #000;
color: #fff;
padding: 10px 20px;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.menu {
display: flex;
gap: 20px;
}
.menu-item {
text-decoration: none;
color: #fff;
font-weight: bold;
}
.badge {
background-color: #00a200;
border-radius: 50%;
padding: 2px 6px;
color: #fff;
font-size: 0.8rem;
}
/* Main Content */
.main-content {
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
}
.login-modal {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 90%;
max-width: 400px;
}
.modal-title {
text-align: center;
margin-bottom: 20px;
font-size: 1.8rem;
color: #000;
}
/* Form Styles */
.input-group {
display: flex;
align-items: center;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
overflow: hidden;
}
.input-group label {
background-color: #00a200;
color: #fff;
padding: 10px;
font-size: 1rem;
border-right: 1px solid #ccc;
}
.input-group input {
flex: 1;
padding: 10px;
border: none;
outline: none;
}
.forgot-link {
display: block;
text-align: right;
font-size: 0.8rem;
color: #007bff;
margin-bottom: 10px;
text-decoration: none;
}
.forgot-link:hover {
text-decoration: underline;
}
/* Button */
.btn {
width: 100%;
padding: 10px;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
}
.login-btn {
background-color: #00a200;
color: #fff;
}
.login-btn:hover {
background-color: #008f00;
}
/* Signup Text */
.signup-text {
text-align: center;
margin-top: 20px;
font-size: 0.9rem;
}
.signup-link {
color: #007bff;
text-decoration: none;
}
.signup-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header class="header">
<div class="logo">betway</div>
<nav class="menu">
<a href="#" class="menu-item">Login</a>
<a href="#" class="menu-item">Sign Up</a>
<a href="#" class="menu-item">Betslip <span class="badge">0</span></a>
</nav>
</header>
Comments
Post a Comment