body {
    margin: 0;
    padding: 0;
    background: url('../images/login_background.png') no-repeat center center fixed; /* Replace with the actual image file */
    background-size: cover; /* Ensures the image covers the entire background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: block;
    width: 350px;
    padding: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); /* Darker shadow */
    text-align: center;
}

.container img {
    width: 210px;
    margin-bottom: 20px;
}

.container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.container p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.container .sign-in-button {
    font-size: 16px;
}

.sign-in-button:disabled {
	background-color: #cccccc;
	color: #666666;
	cursor: not-allowed;
	opacity: 0.6;
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    text-align: left;
}

.footer a:hover {
    text-decoration: underline;
}

.footer img {
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.footer p {
    margin: 5px 0;
}

.copyright {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
}
