body, html  {
    background-color: #FFFFFF;
    color: black;
    margin: 0px 0px 0px 0px;
    font-family: 'Inter', sans-serif;
    text-align: Left;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.logo img {
    height: auto;
    /* Maintain aspect ratio */
    max-width: 150px;
    /* Limit max width of logo */
    display: block;
    /* Remove extra space below image */
    border-radius: 5px;
    /* Rounded corners for logo */
}

h1 {
    font-size: 1.5em;
    color: #153fe9;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    width: 100%;
    /* Make buttons full width on mobile */
    margin-bottom: 10px;
    /* Space between buttons */
}

button:last-child {
    margin-bottom: 0;
    /* No margin for the last button */
}

.btn-primary {
    background-color: #153fe9;
    color: white;
}

.btn-primary:hover {
    background-color: #153fe9;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}