The Olena Group
body {
font-family: Helvetica, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
}
.container {
text-align: center;
padding: 2rem;
background: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
max-width: 400px;
margin: 50px auto 0; /* Add 50px of space above the container */
}
.login-btn {
display: inline-block;
padding: 0.75rem 1.5rem;
background: #000;
color: #fff;
text-decoration: none;
font-size: 1rem;
font-weight: 400; /* Reduce font weight for a lighter text style */
border-radius: 4px;
transition: background 0.3s ease, color 0.3s ease;
}
.login-btn:hover {
background: #444;
color: #f4f4f4;
}