/* Resetting basic properties for a consistent layout across browsers */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    overflow-y: auto;
}

/* Main container styling */
.container {
    width: 90%;
    max-width: 1000px;
    /* Increased max width to accommodate side-by-side containers */
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

/* Flexbox layout for button groups */
.button-group-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Each button group styling */
.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    /* Reduced width to fit two containers side-by-side */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Styling for buttons */
button {
    background-color: transparent;
    color: #0078d4;
    border: 2px solid #0078d4;
    padding: 8px 16px;
    margin: 10px 0;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #0078d4;
    color: white;
}

button.azure-login-btn {
    font-size: 14px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .button-group-row {
        flex-direction: column;
        /* Stack containers vertically on smaller screens */
        align-items: center;
    }

    .button-group {
        width: 90%;
        /* Full width for each container */
        margin-bottom: 20px;
        /* Add spacing between containers */
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
    }

    button {
        padding: 10px 20px;
    }
}