body {
    min-height: 100vh;
    background-color: #0c1e34;
    overflow: hidden;
  }
  
  .col-caminhao {
    /*background-image: url('/new_static/caminhao.svg');*/
    background-image: url('/caminhao5.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-position: center center;
  }
  
  .login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .login-logo {
    width: 200px;
    margin-bottom: 1rem;
  }
  
  .login-form {
    width: 400px;
    max-width: 100vw;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 767.98px) {
    .col-caminhao {
      display: none;
    }
    .login-form {
      width: 90%;
    }
  }