body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-bottom: 50px;
}
.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 250px;
}
.login-button {
    display: inline-block;
    background-color: #0078D4;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top:50px;
}
.login-button:hover {
    background-color: #005A9E;
}
.login-button:active {
    background-color: #004578;
}
.request-access {
    font-size: 13px
}