/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #E5F3FF; /* Set the background color for the screen */
}

.background {
    background-color: #E5F3FF; /* Ensure background color for the background div */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* Make sure background-position works */
}

/* For larger screens, display background images */
@media screen and (min-width: 601px) {
    .background {
        background-repeat: no-repeat, no-repeat;
        background-position: left bottom, right bottom;
        background-size: 400px; /* Set appropriate size for both images */
        background-image: url('login-background-left.svg'), 
                          url('login-background-right.svg');
    }
}

.center-panel {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    z-index: 1; /* Ensure it's on top of background */
	margin-top:120px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

h1 {
    font-size: 24px;
    color: #333;
}

.button-container {
    margin-bottom: 20px;
}

.app-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-button:hover {
    background-color: #eaeaea;
}

.button-logo {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

.button-text {
    flex-grow: 1;
    text-align: left;
    font-weight: bold;
}

.instruction-text {
    font-size: 12px;
    color: #777;
}

.instruction-text a {
    color: #0073e6;
    text-decoration: none;
}

.instruction-text a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
    z-index: 1; /* Ensure it appears above background */
    width: 100%;
    padding-bottom: 20px; /* To avoid it sticking directly to the bottom */
}

footer.footer p {
    margin: 0;
}

footer.footer a {
    color: #0073e6;
    text-decoration: none;
}

footer.footer a:hover {
    text-decoration: underline;
}
.content-wrapper
{
	flex:1;
}