
.sws-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sws-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sws-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sws-card h3 {
  margin-top: 0;
  font-size: 20px !important;
  color: #3165D1;
}

.sws-card label {
  font-family: 'Figtree';
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px !important;
}

.sws-card input,
.sws-card select {
  padding: 13px 12px !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-family: 'Figtree';
  font-weight: 600;
}

.sws-form-submit {
  width: 160px !important;
  text-align: right;
}
.sws-form-submit:hover {
  width: 160px !important;
  text-align: right;
}

