body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    /* Arrange items vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    font-family: 'Roboto', Arial, sans-serif!important;
    margin: 0;
    padding: 20px;
    /* Add some padding for smaller screens */
    box-sizing: border-box;
    /* Include padding in element's total width and height */
}

.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-logo {
    width: 150px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}

h1 {
    color: #333;
    margin: 0;
    /* Remove default margin */
    font-size: 2.5em;
    /* Larger for a landing page title */
}

.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 350px;
    /* Max width for better appearance on large screens */
}

h2 {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.5em;
}

.login-button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    /* For links */
    color: #fff;
    box-sizing: border-box;
    /* Include padding in width */
}

.microsoft-button {
    background-color: #0078d4;
    /* Microsoft Blue */
}

.google-button {
    background-color: #4285F4;
    /* Google Blue */
}

.login-button:hover {
    opacity: 0.9;
}

