 body {
        margin: 0;
        padding: 0;
        background-color: #ffffff;
        overflow-x: hidden;
    }
    .login-container {
        display: flex;
        min-height: 100vh;
        width: 100%;
        background-color: #ffffff;
    }
    .truck-image-container {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        background-color: #ffffff;
    }
    .truck-image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .login-form-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        max-width: 550px;
        background-color: #ffffff;
    }
    .login-form {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
        padding: 0;
        background-color: #ffffff;
    }
    .login-title {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #000;
    }
    .form-control {
        border-radius: 4px;
        padding: 0.75rem;
        height: auto;
        margin-bottom: 1rem;
    }
    .btn-login {
        background-color:#004464;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 0.75rem;
        width: 100%;
        font-weight: normal;
        transition: all 0.3s ease;
    }
    .btn-login:hover {
        background-color: #004464;
        color: white;
        box-shadow: 0 4px 8px rgba(0, 68, 100, 0.3);
    }
    .switch-container {
        display: flex;
        align-items: center;
    }
    .switch {
        position: relative;
        display: inline-block;
        width: 36px;
        height: 20px;
        margin-right: 8px;
    }
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 20px;
    }
    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }
    input:checked + .slider {
        background-color: #004464;
    }
    input:checked + .slider:before {
        transform: translateX(16px);
    }
    .switch-label {
        font-size: 0.9rem;
        color: #444;
        user-select: none;
    }
    .forgot-link {
        text-align: right;
        color: #004464;
        text-decoration: none;
    }
    .terms-text {
        font-size: 0.75rem;
        text-align: center;
        margin-top: 1rem;
        color: #000;
    }
    .terms-text a {
        color: #00bcd4;
        text-decoration: none;
    }
    @media (max-width: 768px) {
        .login-container {
            flex-direction: column;
        }
        .truck-image-container {
            height: 30vh;
        }
    }