body {
    background: #f8f9fa;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-container {
    display: flex;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }

  .login-image {
    width: 50%;
    background: url('../img/about-company-3.jpg') no-repeat center center/cover;
  }

  .login-form {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .login-form h3 {
    font-size: 28px;
    color: #343a40;
    margin-bottom: 20px;
    text-align: center;
  }

  .login-form .form-label {
    font-size: 14px;
    color: #495057;
    font-weight: bold;
  }

  .login-form input {
    margin-bottom: 15px;
    height: 45px;
    padding: 10px;
    font-size: 14px;
  }

  .btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .btn-primary:hover {
    background: #0056b3;
  }

  .login-form p {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
  }

  .login-form a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .login-form a:hover {
    color: #0056b3;
  }

  @media (max-width: 768px) {
    .login-container {
      flex-direction: column;
    }

    .login-image {
      width: 100%;
      height: 200px;
    }

    .login-form {
      width: 100%;
    }
  }
  .register-container {
    display: flex;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }

  .register-image {
    width: 50%;
    background: url('../img/about-company-2.jpg') no-repeat center center/cover;
  }

  .register-form {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .register-form h3 {
    font-size: 28px;
    color: #343a40;
    margin-bottom: 20px;
    text-align: center;
  }

  .register-form .form-label {
    font-size: 14px;
    color: #495057;
    font-weight: bold;
  }

  .register-form input {
    margin-bottom: 15px;
    height: 45px;
    padding: 10px;
    font-size: 14px;
  }

  .btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .btn-primary:hover {
    background: #0056b3;
  }

  .register-form p {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
  }

  .register-form a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .register-form a:hover {
    color: #0056b3;
  }

  @media (max-width: 768px) {
    .register-container {
      flex-direction: column;
    }

    .register-image {
      width: 100%;
      height: 200px;
    }

    .register-form {
      width: 100%;
    }
  }
