    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
    }
    
    .background-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      background: url('/dashboard/images/bg-login.jpg') no-repeat center center;
      background-size: cover;
    }

    .background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.8);
      z-index: 1;
    }

    .login-wrapper {
      position: relative;
      z-index: 2;
    }

    .login-box {
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-width: 420px;
    }

    .brand-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 1rem;
    }

    .brand-logo img {
      max-height: 50px;
      margin-bottom: 0.5rem;
    }

    .login-title {
      background-color: #0E2050;
      color: white;
      font-weight: 600;
      padding: 1.5rem 2rem;
      text-align: center;
      border-radius: 6px 6px 0 0;
    }

    .form-label-custom {
      font-weight: 500;
      font-size: 0.875rem;
      color: #555;
      margin-bottom: 0.3rem;
    }

    .btn-primary {
      background-color: #0E2050;
      border: none;
    }

    .btn-primary:hover {
      background-color: #002277;
    }

    .input-border-right-none {
      border-right: none;
      box-shadow: none;
    }

    .color-icon {
      color: #0E2050;
    }