      body {
        margin: 0;
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: #000;
      }

      .container {
        display: flex;
        width: 800px;
        height: 500px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        background: white;
      }

      /* Left Section */
      .left {
        flex: 1;
        background: #d6c2aa;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
      }

      .logo img {
        max-width: 180px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
      }

      .title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
      }

      .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
      }

      /* Input group aligned + same width as button */
      .input-group {
        margin-bottom: 20px;
        width: 100%;
        max-width: 320px;
      }

      .input-group input {
        width: 100%;
        padding: 14px 20px;
        border-radius: 8px;
        border: none;
        outline: none;
        font-size: 16px;
        box-sizing: border-box;
      }

      /* Button aligned with input */
      button {
        width: 100%;
        max-width: 320px;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background: black;
        color: white;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
      }

      .back {
        margin-top: 20px;
        font-size: 14px;
        color: #444;
        text-decoration: none;
        display: block;
      }

      /* Right Section */
      .right {
        flex: 1;
        background: url("/images/Admin/ForgetPassword.jpg") no-repeat center
          center/cover;
      }

      /* Messages */
      #errorMsg {
        color: red;
        font-size: 14px;
        margin-bottom: 10px;
      }
      #successMsg {
        color: green;
        font-size: 14px;
        margin-bottom: 10px;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .container {
          flex-direction: column;
          width: 90%;
          height: auto;
        }

        .right {
          height: 250px;
        }

        .input-group,
        button {
          max-width: 100%;
        }
      }
