 .my-sms-plugin .containersms {
    background: linear-gradient(135deg, #1aad68, #78e885 );
    border: 1px solid rgba(255 255 255 / 0.3);
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    width: 380px;
    padding: 2rem;
   /* font-weight: bold;
    font-size: 18px;
    margin-right: 1px;*/
  }

 .my-sms-plugin #login-tabsms {
      font-size: 15px;
    display: flex;
    gap: 0.5rem; /* فاصله بین تب‌ها */
    direction: rtl; /* راست‌چین برای فارسی */
    margin-bottom: 1.5rem;
      list-style: none;
  padding: 0;
  margin: 0;
  }
 .my-sms-plugin #login-tabsms li {
    cursor: pointer;
    padding: 0.5rem;
    color: black;
    background-color: transparent;
    border-radius: 9999px; /* گرد */
    font-weight: 300;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
    white-space: nowrap;
  }
  .my-sms-plugin #login-tabsms li.active {
    background-color: #9ccc45; /* صورتی روشن */
    color: white;
    font-weight: 700;
  }
 .my-sms-plugin #login-tabsms li:hover:not(.active) {
    background-color: rgba(236, 72, 153, 0.5);
    color: white;
  }

  .my-sms-plugin .tab-contentsms {
    margin-bottom: 2rem;
  }
  .my-sms-plugin form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
 .my-sms-plugin input,
.my-sms-plugin button,
.my-sms-plugin label {
  font-family: inherit;
}
 .my-sms-plugin input {
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255 255 255 / 0.6);
    background-color: rgba(255 255 255 / 0.3);
    color: black;
    transition: border-color 0.3s;
  }
 .my-sms-plugin input::placeholder {
    color: rgba(0,0,0,0.3);
  }
 .my-sms-plugin input:focus {
    outline: none;
    border-color: #21a4af ;
    background-color: white;
  }
 .my-sms-plugin label {
    text-align: right;
    color: white;
  }
 .my-sms-plugin button {
    background-color: rgba(255 255 255 / 0.8);
    color: #21a4af;
    font-weight: 700;
    border: none;
    padding: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
       text-align: center;
  }
 .my-sms-plugin button:hover {
    background-color: green;
  }
  
  /* می‌تونی داخل style tag یا CSS جداگانه قرار بدی */
.my-sms-plugin button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

   .my-sms-plugin .hidden {
  display: none !important;
}

 .my-sms-plugin .sms-error {
    background-color: #ffe5e5;
    color: #d60000;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 15px;
}
.my-sms-plugin .sms-success {
    background-color: #e6ffe6;
    color: #007700;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 15px;
}

 