body {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
    color: #6b7280;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-position: center top 86%;
    background-image: url(img/login_background.png)!important;
}

strong {
    font-weight: 500;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1250px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
}

.carousel-container {
    width: 66.67%;
    height: 750px;
    margin: 0;
    padding: 0;
    max-width: 1250px;
    display: block;
}

.carousel,
.carousel .slick-list,
.carousel .slick-track {
    width: 100%;
    height: 100%;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-box {
    padding: 55px;
    width: 33.33%;
    height: 750px;
    box-sizing: border-box;
}

.login-box h2 {
    font-size: 30px;
    color: #111827;
    line-height: 1.4em;
    text-align: left;
    margin-block-start: 0px;
    margin-block-end: 12px;
}

.login-box h4 {
    font-family: 'Inter',Helvetica,Arial,Lucida,sans-serif;
    font-size: 15px;
    color: #7a808d!important;
    text-align: left;
    margin-block-start: 0px;
    margin-block-end: 36px;
}

.login-image-box {
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    display: block;
    padding-bottom: 50px;
    margin-top: 50px!important;
    text-align: center;

}

.login-image-wrap {
    border: 0 solid #333;
    display: inline-block;
    position: relative;
    max-width: 100%;
}

.login-image {
    height: auto;
    max-width: 100%;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 15px;
    border: 0px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    background-color: #eee;
}

.input-group input::placeholder {
    color: #6c757d; /* Match the placeholder color with the example */
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.input-group button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.input-group button:hover {
    background-color: #0056b3;
}

.login-footer {
    font-size: 11px;
    line-height: 1.4em;
    margin-top: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    word-wrap: break-word;
}

.login-footer p {
    font-family: Inter !important;
    font-weight: 400 !important;
    text-align: center;
}

/* Hide carousel on mobile */
@media (max-width: 1250px) {
    .carousel-container {
        display: none;
    }
    
    .login-container {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .login-box {
        width: 100%;
    }
}
