.shk-login-page {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 20%;
}

.shk-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.shk-header-img-wrapper {
  flex-shrink: 0;
}
.image-login-page {
  width: 100%;
}
.shk-header-img {
  width: 240px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid rgba(0, 124, 186, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.shk-header-img:hover {
  transform: scale(1.05);
}

.shk-header-text {
  flex-grow: 1;
}

.shk-welcome-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.shk-welcome-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  opacity: 0.85;
}

.shk-forms-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

/* ستون‌های فرم لاگین و ثبت نام */
.shk-login-column,
.shk-register-column {
  background: #fff;
  border-radius: 16px;
}

/* عناوین فرم */
.shk-form-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 18.45px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 15px;
  color: #d4d4d4;
  text-align: center;
  margin-top: 20px;
}

.shk-form-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("https://fastpip.com/wp-content/uploads/2025/08/Group-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 20px auto;
}
.googlesitekit-sign-in-with-google__frontend-output-button {
  display: none;
}
.shk-form-login,
.shk-form-register {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.shk-form-row {
  margin-bottom: 10px;
}

.shk-form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.shk-required {
  color: #dc3545;
  font-weight: bold;
}

/* ورودی‌ها */
.shk-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
  color: #222;
}

.shk-input:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 8px rgba(0, 124, 186, 0.4);
  background: #fff;
}

/* چک‌باکس */
.shk-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  color: #444;
  margin-bottom: 20px;
}

.shk-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #007cba;
}

/* لینک فراموشی رمز */
.shk-lost-password {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}

.shk-lost-password a {
  color: #007cba;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.shk-lost-password a:hover {
  color: #005a87;
  text-decoration: underline;
}

/* حذف لیبل‌ها */
.woocommerce-form-row label {
  display: none !important;
}

/* استایل جدید برای ورودی‌ها */
.woocommerce-Input.input-text {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px #ddd;
  transition: all 0.3s ease;
}

.woocommerce-Input.input-text:focus {
  background: #fff;
  box-shadow: 0 0 0 2px #007cba;
  outline: none;
}
.shk-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-block: 40px;
}
.shk-input-text:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important; /* اگر بخوای کلاً حذف بشه */
}

.shk-input-icon {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 30px;
  pointer-events: none;
}

.shk-input-text {
  padding-left: 65px !important;
  border: none !important;
  border-bottom: 1px solid #9ca3af !important;
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.shk-remember-and-lost-password {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.remember-me {
  padding-top: 10px;
  font-size: 16px;
  color: #4b5373;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lost-password-link {
  font-size: 16px;
  text-decoration: underline;
  color: #4b5373;
  line-height: 14px;
}

/* ریسپانسیو */
@media (max-width: 950px) {
  .shk-forms-container {
    flex-direction: column;
    gap: 25px;
  }

  .shk-login-column,
  .shk-register-column {
    flex: none;
    width: 100%;
    padding: 25px 20px;
  }
}

.woocommerce-Button.button {
  background-color: #194164;
  margin-top: 15px;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(25, 65, 100, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  width: 100%;
}

.woocommerce-Button.button:hover {
  background-color: #122a3c;
  box-shadow: 0 6px 12px rgba(18, 42, 60, 0.4);
}

.woocommerce-Button.button:active {
  background-color: #0d2030;
  box-shadow: none;
  transform: translateY(1px);
}

.woocommerce-Button.button:focus {
  outline: 3px solid #4da6ff;
  outline-offset: 2px;
}

/* استایل اختصاصی برای دکمه Log in */
.woocommerce-form-login__submit {
  background-color: #194164;
  margin-top: 15px;
  color: #fff;
  border: none;
  padding: 12px 28px;
  padding-bottom: 15px !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(25, 65, 100, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 5px !important;
  width: 100%;
}

/* استایل‌های نمایش خطاها */
.woocommerce-error {
  background-color: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
  color: #721c24 !important;
  padding: 15px 20px !important;
  margin: 20px 0 !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1) !important;
  position: relative !important;
}

.woocommerce-error::before {
  content: "⚠️" !important;
  margin-right: 10px !important;
  font-size: 18px !important;
}

.woocommerce-error ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce-error li {
  margin: 5px 0 !important;
  padding: 0 !important;
}

/* استایل‌های نمایش پیام‌های موفقیت */
.woocommerce-message {
  background-color: #d4edda !important;
  border: 1px solid #c3e6cb !important;
  color: #155724 !important;
  padding: 15px 20px !important;
  margin: 20px 0 !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1) !important;
  position: relative !important;
}

.woocommerce-message::before {
  content: "✅" !important;
  margin-right: 10px !important;
  font-size: 18px !important;
}

/* اطمینان از نمایش خطاها */
.woocommerce-error,
.woocommerce-message {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
