  :root {
      --brand-color: #7a2630; /* 🔹 Change this to your logo's main color */
    }

    body {
      font-family: Arial, sans-serif;
      background: #f7f9fc;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 5;
    }

    .login-container {
      background: #fff;
      padding: 25px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 2px rgba(0,0,0,0.08);
      width: 400px;
      text-align: center;
    }



    /* Company name */
    .company-name {
      font-size: 16px;
      font-weight: 400;
      color: var(--brand-color); /* Matches logo color */
      margin-bottom: 5px;
	  font-weight: bold;
    }

    /* Login title */
    .login-title {
      font-size: 20px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #333;
    }

    /* Input fields */
    .login-container input {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      box-sizing: border-box;
    }

    /* Button */
    .login-container button {
      width: 100%;
      padding: 12px;
      background: var(--brand-color); /* Matches logo color */
      border: none;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
      transition: background 0.3s;
    }

    .login-container button:hover {
      background: #0056b3; /* Slightly darker shade */
    }
    .input-group {
      margin-bottom: 15px;
      text-align: left;
    }
    .input-group label {
      display: block;
      font-size: 13px;
      margin-bottom: 5px;
      color: #333;
    }
    .input-group input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      box-sizing: border-box;
    }
    .error {
      color: red;
      font-size: 13px;
      margin-top: 4px;
      display: none;
    }
    .captcha-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .captcha-box input {
      flex: 1;
    }
    .captcha-image-box {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }
    .captcha-image {
      height: 40px;
      border: 2px solid #ccc;
      border-radius: 10px;
      background: #fff;
      flex: 1;
    }
    .refresh-btn {
      background: #6b1e1e;
      color: #fff;
      border: none;
      padding: 8px 10px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
    }
    .refresh-btn:hover {
      background: #8c2a2a;
    }
    .forgot {
      display: block;
      margin: 10px 0;
      font-size: 13px;
      color: #f39c12;
      text-decoration: none;
      text-align: right;
    }
   
    .btn {
      background: #f39c12; /* Golden orange */
      color: #fff;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
      font-weight: bold;
    }
    .btn:hover {
      background: #d9820f;
    }

    .message { text-align:center; margin-top:10px; color:red; font-size:12px; }
