#apply-start-page {
  direction: rtl;
  width: 100%;
  padding: 20px 0;
}

#apply-start-page .asc-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  padding: 28px;
}

#apply-start-page .asc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  /* border-bottom: 1px solid #edf0f5; */
  padding-bottom: 24px;
  margin-bottom: 22px;
}

#apply-start-page .asc-title-block {
  text-align: right;
}

#apply-start-page .asc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 900;
  color: #101828;
}

#apply-start-page .asc-title i {
  color: var(--green-main);;
  font-size: 26px;
}

#apply-start-page .asc-subtitle {
  margin: 8px 0 0;
  color: #7b8496;
  font-size: 15px;
  line-height: 1.8;
}

#apply-start-page .asc-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  background: #eef4ff;
  color: var(--green-main);;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

#apply-start-page .asc-note {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dbeafe;
  background: #f8fbff;
  color: #475467;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
}

#apply-start-page .asc-note i {
  color: var(--green-main);;
}

#apply-start-page .asc-note span {
  color: #dc2626;
  font-weight: 900;
}

#apply-start-page .asc-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

#apply-start-page .asc-alert-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

#apply-start-page .asc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#apply-start-page .asc-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

#apply-start-page .asc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 16px;
  font-weight: 900;
  color: #172033;
  margin: 0;
}

#apply-start-page .asc-label i {
  color: var(--green-main);;
}

#apply-start-page .asc-label span {
  color: #dc2626;
}

#apply-start-page .asc-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9dee8;
  border-radius: 12px;
  padding: 0 14px;
  background: #ffffff;
  color: #172033;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  transition: 0.2s ease;
}

#apply-start-page select.asc-control {
  cursor: pointer;
}

#apply-start-page .asc-control:focus {
  border-color: var(--green-main);;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

#apply-start-page .asc-actions {
  /* border-top: 1px solid #edf0f5; */
  padding-top: 22px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

#apply-start-page .asc-btn {
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

#apply-start-page .asc-btn:hover {
  transform: translateY(-1px);
}

#apply-start-page .asc-btn-primary {
  background: var(--green-main);;
  border-color: var(--green-main);;
  color: #ffffff;
}

#apply-start-page .asc-btn-primary:hover {
  background: var(--green-main);
  color: #ffffff;
}

#apply-start-page .asc-btn-light {
  background: #ffffff;
  border-color: #d9dee8;
  color: #344054;
}

#apply-start-page .asc-btn-light:hover {
  background: #f8fafc;
  color: #344054;
}

@media (max-width: 768px) {
  #apply-start-page .asc-card {
    padding: 20px;
    margin: 0 10px;
  }

  #apply-start-page .asc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #apply-start-page .asc-title {
    font-size: 24px;
  }

  #apply-start-page .asc-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  #apply-start-page .asc-btn {
    width: 65%;
    margin: auto;
  }
}