/* Standard Form Layout Styles */
.als-form-container.standard .als-form .als-form-field {
  margin-bottom: 16px; 
  width: 100%;
}

.als-form-container.standard .als-form .als-form-field-submit {
  width: 100%;
  margin-top: 8px;
}

.als-form-container.standard .als-form button[type="submit"] {
  width: 100%;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 0;
  font-size: 1.15em;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(106, 90, 205, 0.08);
}

.als-form-container.standard {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  padding: 40px 0;
}

.als-form-container.standard .als-form {
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.07);
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.als-form-container .als-form-row {
  display: flex;
  gap: 20px;
}

.als-form-container .als-form-col {
  flex: 1 1 0;
  padding: 0;
}

.als-form-container.standard .als-form label {
  margin-bottom: 1px;
  display: block;
  letter-spacing: 0.01em;
}

.als-form-container.standard .als-form input,
.als-form-container.standard .als-form textarea,
.als-form-container.standard .als-form select {
  width: 100%;
  color: #222;
  padding: 8px 0 8px 0;
  font-size: 1em;
  margin-bottom: 1px;
  margin-top: 0;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}


.als-form-container.standard .als-form button[type="submit"] {
  width: 100%;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 0;
  font-size: 1.15em;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(106, 90, 205, 0.08);
}

.als-form-container.standard .als-form input::placeholder,
.als-form-container.standard .als-form textarea::placeholder {
  color: #b0b8c9;
  opacity: 1;
}

/* RADIO BUTTONS */
.als-form-container.standard .als-form input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}

.als-form-container.standard .als-form label input[type="radio"] {
  margin-right: 8px;
}

.als-form-container.standard .als-form label[for] {
  cursor: pointer;
}

/* CHECKBOX */
.als-form-container.standard .als-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}

.als-form-container.standard .als-form label input[type="checkbox"] {
  margin-right: 8px;
}

/* RADIO WITH IMAGE */
.als-form-container.standard .als-form .radio-image-group label {
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 6px 10px 6px 0;
  transition: border-color 0.2s;
}

.als-form-container.standard .als-form .radio-image-group img {
  max-width: 40px;
  max-height: 40px;
  margin-left: 6px;
  border-radius: 6px;
  transition: outline 0.2s, border-color 0.2s;
}

/* FILE UPLOAD */
.als-form-container.standard .als-form input[type="file"] {
  border: none;
  background: none;
  font-size: 1em;
  color: #222;
  padding: 8px 0;
  margin-bottom: 12px;
}

.als-form-container.standard .als-form input[type="file"]::-webkit-file-upload-button {
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.als-form-container.standard .als-form input[type="file"]::file-selector-button {
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.als-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px dashed #000000;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 12px;
  position: relative;
}

.als-upload-label:hover {
  filter: brightness(0.96);
}

.als-upload-icon {
  font-size: 1.4em;
}

.als-upload-input {
  display: none;
}

.als-upload-filename {
  display: block;
  margin-top: 8px;
  color: #222;
  font-size: 0.98em;
  word-break: break-all;
}

@media (max-width: 700px) {
  .als-form-container .als-form-row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .als-form-container .als-form-col {
    width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 16px;
  }
}