body{
    background-color: blanchedalmond;
}

.login-button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-left: auto; /* Aligns the button to the right */
    cursor: pointer;
}

.login-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

