
    body, html {
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
    }

    .dashboard-container {
      display: flex;
      height: 100vh;
    }

    .login-left {
      background-color: #082c4c;
      color: white;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      flex-direction: column;
      text-align: center;
    }

    .login-left img {
      width: 40px;
      margin-bottom: 20px;
    }

    .login-left h1 {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .login-left p {
      font-size: 1rem;
      color: #d1d1d1;
    }

    .login-right {
      flex: 1;
      background-color: #fdfdfd;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .login-wrapper {
      width: 100%;
      max-width: 400px;
    }

    .btn-orange {
      background-color: #f26522;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 6px;
      font-weight: 500;
      font-size: 16px;
    }

    .btn-orange:hover {
      background-color: #d9520d;
    }

    .form-label {
      font-weight: 500;
    }

    .form-control {
      border-radius: 6px;
    }

    .form-switch-link a {
      font-size: 0.9rem;
      color: #333;
    }

    .form-switch-link a:hover {
      text-decoration: underline;
    }

    .input-group-text {
      background-color: #eee;
      border: none;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
    }

    .text-muted.small {
      font-size: 0.8rem;
      color: #888;
    }

    @media (max-width: 768px) {
      .login-left {
        display: none;
      }

      .login-right {
        flex: 1 0 100%;
      }
    }
