.bN3m8k
{
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  background-color: #f5f7fa;
  padding: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.xY7p2q
{
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 600px;
}

.kL9m3n
{
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  background-color: #fafafa;
}

.pR4s8t
{
  font-weight: 600;
  padding: 0 0.5rem;
  color: #333;
  font-size: 1.1rem;
}

.qW5e9v
{
  margin-bottom: 1rem;
}

.tZ3x7c
{
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
}

.rS2d8f
{
  color: #e53e3e;
}

.uV4b7m
{
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.uV4b7m:focus
{
  outline: none;
  border-color: #4c9aff;
  box-shadow: 0 0 0 2px rgba(76, 154, 255, 0.2);
}

.hJ6k9l
{
  text-align: center;
  margin-top: 1.5rem;
}

.gF3p2q
{
  background-color: #4c9aff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s;
  width: 100%;
  max-width: 200px;
}

.gF3p2q:hover
{
  background-color: #3a85e8;
}

.gF3p2q:active
{
  background-color: #2a75d8;
}

.nB8v7c
{
  display: flex;
  gap: 1rem;
}

.nB8v7c .qW5e9v
{
  flex: 1;
}


.smart-form-form
{
  font-family: 'Segoe UI', sans-serif;
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 650px;
  margin: 0 auto;
  direction: rtl;
  animation: fadeIn 0.5s ease-in-out;
}

.smart-form-field
{
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideIn 0.5s forwards;
}

.smart-form-field:nth-child(n)
{
  animation-delay: calc(0.1s * var(--i));
}

.smart-form-label
{
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.smart-form-input-field,
.smart-form-custom-select
{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  font-size: 15px;
  transition: var(--transition);
  background-color: #fff;
}

.smart-form-input-field:focus,
.smart-form-custom-select:focus
{
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
  outline: none;
}

.smart-form-custom-select
{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6H0z%22%20fill%3D%22%234361ee%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  padding-right: 36px;
}

.smart-form-toggle-optional
{
  display: block;
  margin: 20px auto;
  background-color: var(--accent-color);
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

.smart-form-toggle-optional:hover
{
  background-color: var(--secondary-color);
}

.smart-form-submit-btn
{
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  transition: var(--transition);
}

.smart-form-submit-btn:hover
{
  background-color: var(--secondary-color);
}

.smart-form-optional-fields
{
  margin-top: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: var(--transition);
}

.smart-form-optional-fields.smart-form-show
{
  max-height: fit-content;
  opacity: 1;
}

.smart-form-optional-fields.smart-form-hide
{
  max-height: 0;
  opacity: 0;
}

@keyframes fadeIn
{
  from
  {
    opacity: 0;
    transform: translateY(20px);
  }

  to
  {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideIn
{
  to
  {
    opacity: 1;
    transform: translateY(0);
  }
}