body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f0f0;
}

.container {
    width: calc(100% - 120px);
    max-width: 1000px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.login-box {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.login-form {
    width: 50%;
    min-width: 300px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
}

.login-form h1 {
    margin: 0;
    font-size: 40px;
    text-align: center;
	font-weight: 500;
}

.login-form p {
    margin: 10px 0 20px;
    font-size: 14px;
    text-align: center;
    color: #666;
		padding-bottom: 20px;
}

.login-form label {
    align-self: flex-start;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.login-form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: white;
    background: #263466;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    background: #4d5d95;
}

.container::after {
    content: '';
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-image: url('/common/assets/images/Firefly advanced it data center in monochrome 64490.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block !important;
}

#error_message {
	min-height: 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
				overflow: hidden;
				min-width: 300px;
				height: 500px;
    }

    .login-form {
        width: 100%;
        max-width: 100%;
        background: #fff;
    }

    .container::after {
        display: none;
    }
}
