:root {
  /* --primary-color: #3a0ca3; */
  /* --secondary-color: #4cc9f0; */
  --accent-color: #f72585;
  --bg-color: #f8f9fa;
  --text-dark: #2b2d42;
  --text-light: #edf2f4;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* body {
  background: linear-gradient(135deg, #8338ec10, #3a86ff10);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  padding: 2rem 1rem;
} */

.container {
  max-width: 900px;
  margin: 0 auto;
}

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

.form-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.form-header h1::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 4px;
  border-radius: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 15%;
}

.form-header p {
  margin-top: 1rem;
  opacity: 0.8;
}

.form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.input-group {
  flex: 1;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 12, 163, 0.1);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  border: 1px dashed #ced4da;
  border-radius: 5px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.file-upload-label:hover {
  background: #dde2e6;
}

.file-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: none;
}

.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 0.5rem;
  width: auto;
}

.submit-btn {
  background: var(--button-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 1rem;
  box-shadow: var(--shadow);
}

.submit-btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-list {
  list-style-type: none;
}

.info-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #d4edda;
  border-radius: 8px;
  margin-top: 2rem;
  animation: fadeIn 0.5s ease;
}

.success-message h3 {
  color: #155724;
  margin-bottom: 1rem;
}

.success-message p {
  color: #155724;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-header h1 {
    font-size: 2rem;
  }
}