.elementor-27900 .elementor-element.elementor-element-b70798a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--background-transition:0.3s;--padding-top:80px;--padding-bottom:40px;--padding-left:40px;--padding-right:40px;}.elementor-27900 .elementor-element.elementor-element-b70798a, .elementor-27900 .elementor-element.elementor-element-b70798a::before{--border-transition:0.3s;}.elementor-27900 .elementor-element.elementor-element-f5c18eb{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-9372280 */body {
  background-color: #121212;
  font-family: "Tahoma", sans-serif;
  color: white;
  margin: 0;
  padding: 20px;
  direction: rtl;
}

.tab-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(232, 185, 4, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-sizing: border-box;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  cursor: pointer;
  background-color: rgba(232, 185, 4, 0.2);
  color: black;
  font-weight: bold;
  border-radius: 12px 12px 0 0;
  user-select: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.2s ease;
}

.tab.active {
  background-color: #e8b904;
  color: black;
  box-shadow: 0 4px 12px rgba(232, 185, 4, 0.4);
  transform: scale(1.02);
}

.tab:hover {
  background-color: rgba(232, 185, 4, 0.4);
}

form {
  width: 100%;
  box-sizing: border-box;
}

form label {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.form-row > div {
  flex: 1;
}

input[type="number"] {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white !important;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: center;
  height: 40px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  body,
  body * {
    font-size: 12px !important;
  }

  .form-row {
    flex-direction: column;
  }
}/* End custom CSS */