body {
    background-color: #000000;
    font-family: "betway-sans", "helvetica neue", helvetica, arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #ffffff;
}

.login-container {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 8px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.voucher-banner {
    background-color: #8cc63f; /* betway green */
    color: #000000;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.input-group {
    margin-bottom: 15px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    background-color: #404040;
    border: 1px solid #555;
    border-radius: 4px;
    color: #ffffff;
    box-sizing: border-box;
    font-size: 1em;
}

input::placeholder {
    color: #a0a0a0;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #8cc63f;
    border: none;
    border-radius: 4px;
    color: #000000;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #7ab430;
}

.links {
    margin-top: 15px;
}

.links a, .footer-links a {
    color: #8cc63f;
    text-decoration: none;
    font-size: 0.8em;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    margin: 0 10px;
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: bold;
}
