/* Trade Account Verification – Front-end Form Styles */

.tav-form-wrap {
  max-width: 560px;
}

.tav-intro {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Status banners */
.tav-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}
.tav-status__icon { font-size: 18px; }
.tav-status--approved { background: #d1e7dd; border: 1px solid #a3cfbb; color: #0a3622; }
.tav-status--pending  { background: #fff3cd; border: 1px solid #ffc107; color: #664d03; }
.tav-status--denied   { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

/* Form fields */
.tav-field { margin-bottom: 20px; }
.tav-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #222;
}
.tav-required { color: #dc3545; }

/* Dropzone */
.tav-dropzone {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
}
.tav-dropzone:hover,
.tav-dropzone.tav-dragover {
  border-color: #333;
  background: #f0f4ff;
}
.tav-dropzone__icon { font-size: 36px; margin-bottom: 8px; }
.tav-dropzone__text { margin: 0 0 4px; font-size: 14px; color: #555; }
.tav-dropzone__browse {
  color: #2271b1;
  text-decoration: underline;
  cursor: pointer;
}
.tav-dropzone__hint { margin: 0; font-size: 12px; color: #999; }
.tav-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* File preview */
.tav-file-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f0f4ff;
  border: 1px solid #c3d4f7;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 13px;
}
.tav-file-preview__name { flex: 1; color: #333; font-weight: 500; }
.tav-file-preview__remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
}

/* Messages */
.tav-messages {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
}
.tav-messages--success { background: #d1e7dd; border: 1px solid #a3cfbb; color: #0a3622; }
.tav-messages--error   { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

/* Submit button */
.tav-submit {
  min-width: 180px;
  position: relative;
}
.tav-submit:disabled { opacity: 0.6; cursor: not-allowed; }
