body {
    background-color: #f4f6f9;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.login-container {
    width: 100%;
    max-width: 1000px;
    margin: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
}
.login-form-container {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-image-container {
    width: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 3%;
    border-bottom-left-radius: 3%;
}
.login-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-logo {
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.login-logo img {
    height: 50px;
    margin-right: 15px;
}
.login-logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
}
.welcome-text {
    margin-bottom: 30px;
}
.welcome-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.welcome-text p {
    color: #6c757d;
    font-size: 0.9rem;
}
.form-group label {
    font-weight: 500;
}
.login-btn {
    background-color: #0d6efd;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    margin-top: 10px;
}
.language-selector {
    text-align: center;
    margin-top: 20px;
}
.language-selector a {
    color: #0d6efd;
    text-decoration: none;
}
.sign-up-link {
    color: #0d6efd;
    text-decoration: none;
}
.forgot-password {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .login-container {
    flex-direction: column;
    max-width: 100%;
    height: auto;
    margin: 15px;
    }
    .login-form-container,
    .login-image-container {
    width: 100%;
    }
    .login-image-container {
    height: 200px;
    order: -1;
    }
}