      @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      /* The Modal (background) */
      .forpwd-modal {
          display: none; 
          position: fixed; 
          z-index: 99; 
          padding-top: 100px; 
          left: 0;
          top: 0;
          width: 100%; 
          height: 100%; 
          overflow: auto; 
          background-color: rgba(0,0,0,0.4); 
      }

      /* Modal Content */
      .forpwd-modal-content {
          position: relative;
          background-color: #fefefe;
          margin: auto;
          padding: 0;
          border: 1px solid #888;
          max-width: 500px;
          width: 80%;
          border-radius: 12px;
          box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
          -webkit-animation-name: forpwd-animatetop;
          -webkit-animation-duration: 0.4s;
          animation-name: forpwd-animatetop;
          animation-duration: 0.4s;
      }

      /* Add Animation */
      @-webkit-keyframes forpwd-animatetop {
          from {top:-300px; opacity:0}
          to {top:0; opacity:1}
      }

      @keyframes forpwd-animatetop {
          from {top:-300px; opacity:0}
          to {top:0; opacity:1}
      }

      /* The Close Button */
      .forpwd-close {
          color: white;
          float: right;
          font-size: 28px;
          font-weight: bold;
      }

      .forpwd-close:hover,
      .forpwd-close:focus {
          color: #000;
          text-decoration: none;
          cursor: pointer;
      }

      .forpwd-modal-header {
          padding: 14px 16px;
          background-color: #27b0c2;
          color: white;
          border-radius: 10px 10px 0px 0px;
      }

      .forpwd-modal-header h2 {
          font-size: 18px;
          font-weight: 500;
      }

      .forpwd-modal-body {
          padding: 10px 16px;
          display: flex;
          flex-direction: column;
          gap: 10px;
          justify-content: center;
          align-items: center;
          width: 100%;
      }

      .forpwd-modal-body input {
          margin-top: 10px;
          width: 100%;
          padding: 6px 10px;
          border-radius: 4px;
          border: 1px solid gray;
          outline: none;
          font-size: 14px;
      }

      .forpwd-modal-body #forpwd-get-otp-btn {
          padding: 2px 6%;
          font-size: 14px;
          background-color: #27b0c2;;
          border-radius: 4px;
          border: 1px solid gray;
          font-weight: 500;
          color: rgb(255, 255, 255);
          font-weight: 500;
          cursor: pointer;
      }
      .forgotpasssection{
        margin-top: 15px;
      }
      .forpwd-forgot-password-link {
          color: #0684ab;
          cursor: pointer;
          text-decoration: underline;
      }
      #verify-otp-btn, #resend-otp-btn{
        padding: 2px 6%;
          font-size: 14px;
          background-color: #27b0c2;;
          border-radius: 4px;
          border: 1px solid gray;
          font-weight: 500;
          color: rgb(255, 255, 255);
          font-weight: 500;
          cursor: pointer;
          margin-top: 6px;
      }
      #verify-otp-btn{
        background-color: green;
      }
      #resend-otp-btn{
        background-color: rgb(200, 4, 4);
      }
      .forpwd-message {
          font-size: 12px;
          margin-top: 0px;
      }
      #reset-password-anchor{
        font-size: 14px;
        color: blue;
      }