:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --card-shadow: 0 10px 40px rgba(0,0,0,0.1);
  --hover-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h1 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-header p {
  color: #6c757d;
  font-size: 1.1rem;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.form-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-5px);
}

.form-section {
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section:last-child {
  border-bottom: none;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
}

.section-title i {
  margin-right: 0.5rem;
  padding: 0.5rem;
  border-radius: 10px;
  background: var(--primary-gradient);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.required-asterisk {
  color: #e74c3c;
  margin-left: 0.25rem;
}

.form-control, .form-select {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-control:focus, .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  background: white;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 5;
}

.checkbox-inline-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profiles-select {
  min-width: 300px;
  flex: 1;
}

.checkbox-group, .radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-item, .radio-item {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.checkbox-item:hover, .radio-item:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
  transform: translateY(-2px);
}

.checkbox-item input:checked + label,
.radio-item input:checked + label {
  color: #667eea;
  font-weight: 600;
}

.checkbox-item input:checked ~ .checkmark,
.radio-item input:checked ~ .checkmark {
  background: var(--primary-gradient);
  color: white;
}

.checkmark {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.range-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid #e9ecef;
}

.range-input {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #e9ecef;
  outline: none;
  -webkit-appearance: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gradient);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.range-value {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #667eea;
}

.file-upload {
  border: 2px dashed #667eea;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: rgba(102, 126, 234, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #5a6fd8;
}

.file-upload i {
  font-size: 2rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.file-note {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.submit-section {
  text-align: center;
  padding: 2rem;
}

.btn-submit {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-reset {
  background: transparent;
  border: 2px solid #6c757d;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  color: #6c757d;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  background: #6c757d;
  color: white;
  transform: translateY(-2px);
}

.editor-container {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  min-height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  padding-left: 1rem;
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.color-preview {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  display: inline-block;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
  }
  .form-header h1 {
    font-size: 2rem;
  }
  .checkbox-inline-container {
    flex-direction: column;
    align-items: stretch;
  }
  .profiles-select {
    min-width: auto;
  }
}/*# sourceMappingURL=input-field-formDesign4.css.map */