* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.forms {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.form-container {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.form-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.form-content {
  padding: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}

.form-group:nth-child(2) {
  animation-delay: 0.2s;
}

.form-group:nth-child(3) {
  animation-delay: 0.3s;
}

.form-group:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #4a5568;
  font-size: 0.95rem;
  position: relative;
}

.form-label.required::after {
  content: "*";
  color: #e53e3e;
  margin-left: 4px;
  font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input[type=color] {
  height: 60px;
  padding: 8px;
  cursor: pointer;
}

.form-input[type=file] {
  padding: 20px;
  border-style: dashed;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-input[type=file]:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.file-note {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 6px;
  font-style: italic;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

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

.checkbox-item input[type=checkbox],
.radio-item input[type=radio] {
  margin-right: 10px;
  transform: scale(1.2);
  accent-color: #667eea;
}

.range-container {
  padding: 20px 0;
}

.form-input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 8px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 6px;
  outline: none;
  padding: 0;
}

.form-input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: white;
  border: 3px solid #667eea;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

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

.select2-container {
  position: relative;
}

.select2-selection {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.select2-selection:hover,
.select2-selection.open {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select2-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #667eea;
  border-radius: 12px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.select2-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.select2-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.select2-option:hover {
  background: rgba(102, 126, 234, 0.1);
}

.select2-option.selected {
  background: #667eea;
  color: white;
}

.checkbox-inline-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-inline input[type=checkbox] {
  transform: scale(1.2);
  accent-color: #667eea;
}

.submit-container {
  grid-column: 1/-1;
  margin-top: 20px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

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

.submit-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .form-content {
    padding: 30px 20px;
  }
  .form-header {
    padding: 30px 20px 40px;
  }
  .form-title {
    font-size: 2rem;
  }
}
.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.cke_notification {
  display: none !important;
}

#imagePreview img {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  max-width: 100px !important;
  height: 80px !important;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #667eea !important;
  border-radius: 10px !important;
}

.select2-dropdown.show {
  position: relative;
  z-index: 111 !important;
}/*# sourceMappingURL=input-field-formDesign3.css.map */