/* assets/css/otp-modal.css */
.wc-otp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .wc-otp-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    border-radius: 4px;
  }
  
  .wc-otp-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .wc-otp-close:hover,
  .wc-otp-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  #wc-otp-input {
    width: 80%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
  }
  
  /* New OTP Button styling (non-conflicting) */
  .wc-otp-button {
    background-color: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .wc-otp-button:hover {
    background-color: #135e96;
  }
  