/* Form Container */
.form-container {
  margin: 0 auto;
  max-width: 100% !important;
}

/* Form Layout */
.backend-company-register-form .form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 20px;
  gap:10px;
}

.backend-company-register-form .form-column {
  flex: 1;
  padding: 0 15px;
  margin-bottom: 20px;
  min-width: 300px;
}

/* Form Elements */
.backend-company-register-form .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c5282; /* Dark blue color from image */
  font-size: 16px;
}

.backend-company-register-form .form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.3s;
  background-color: #fff;
}

.backend-company-register-form .form-input:focus {
  border-color: #eab308;
  outline: none;
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.5); /* yellow glow */
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 35px;
}

/* File Inputs */
.backend-company-register-form .file-input-container {
  display: flex;
  gap:2px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.backend-company-register-form .file-input-button {
  display: inline-block;
  padding: 7px 11px !important;
  background: #2b6cb0; /* Blue from image */
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 10px;
  font-weight: 400;
}

.backend-company-register-form .file-input {
  display: none;
}

.backend-company-register-form .file-name {
  color: #4a5568;
  font-size: 10px;
  margin-top: 3px;
}

/* File Upload Preview */
.backend-company-register-form .file-preview {
  /* margin-top: 10px; */
  display: flex;
  align-items: center;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 4px; 
}

.backend-company-register-form .file-preview-icon {
  width: 38px;
  height: 38px;
  background: #ebf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 10px;
  font-weight: bold;
  color: #3182ce;
}

.backend-company-register-form .file-preview-info {
  flex: 1;
}

.backend-company-register-form .file-preview-name {
  font-size: 14px;
  font-weight: 500;
}

.backend-company-register-form .file-preview-meta {
  font-size: 12px;
  color: #718096;
}

.backend-company-register-form .file-preview-progress {
  height: 4px;
  background: #edf2f7;
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}

.backend-company-register-form .file-preview-progress-bar {
  height: 100%;
  background: #3182ce;
  width: 100%;
}

.backend-company-register-form .file-preview-close {
  color: #a0aec0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 0 8px;
}

/* Service Categories */
.backend-company-register-form .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.backend-company-register-form .service-categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

/* Match checkboxes style from the image */
.backend-company-register-form .service-category {
  display: flex;
  align-items: center;
  padding: 5px 7px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.backend-company-register-form .service-category:hover {
  border-color: #cbd5e0;
  background: #edf2f7;
}

.backend-company-register-form .service-category input[type="checkbox"] {
  margin-right: 8px;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e0;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.backend-company-register-form .service-category input[type="checkbox"]:checked {
  background-color: #3182ce;
  border-color: #3182ce;
}

.backend-company-register-form .service-category input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.backend-company-register-form .service-category label {
  cursor: pointer;
  font-size: 14px;
}

.backend-company-register-form .select-all-control {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.backend-company-register-form .select-all-control input {
  margin-right: 8px;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e0;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.backend-company-register-form .select-all-control input:checked {
  background-color: #3182ce;
  border-color: #3182ce;
}

.backend-company-register-form .select-all-control input:checked:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.backend-company-register-form .select-all-control label {
  cursor: pointer;
  font-size: 14px;
}

/* Loading indicator for categories */
.backend-company-register-form .loading {
  display: none;
  padding: 15px;
  color: #718096;
  font-size: 14px;
  border-radius: 4px;
  background: #f7fafc;
  border: 1px dashed #e2e8f0;
  margin-top: 10px;
  text-align: center;
}

/* Required Field Indicator */
.backend-company-register-form .form-label:after {
  content: " *";
  color: #e53e3e;
}

/* Submit Button */
.backend-company-register-form .submit-button {
  background: #eab308; /* Yellow from image */
  color: #2c5282;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  /* width: 100%; */
}

.backend-company-register-form .submit-button:hover {
  background: #d69e2e;
}

/* Error Messages */
.backend-company-register-form .error-message {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .backend-company-register-form .form-row {
    flex-direction: column;
  }
  
  .backend-company-register-form .form-column {
    flex: 100%;
  }
}

/* Notification styling */
.backend-company-register-form .notification-message {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.backend-company-register-form .notification-message.show {
  transform: translateX(0);
}

.backend-company-register-form .notification-success {
  background-color: #c6f6d5;
  border-left: 4px solid #38a169;
  color: #276749;
}

.backend-company-register-form .notification-error {
  background-color: #fed7d7;
  border-left: 4px solid #e53e3e;
  color: #c53030;
}

.backend-company-register-form .notification-content {
  flex: 1;
}

.backend-company-register-form .close-notification {
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  padding: 0 0 0 15px;
}













