/* Base Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0px 20px 40px 20px;
  background: #ffffff;
  color: #111827;
}

/* Container */
.container {
  max-width: 750px;
  margin: 60px auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Logo */
.logo {
  width: 120px;
  margin: 0 auto 20px;
  display: block;
}

/* Header Text */
h1 {
  text-align: center;
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 12px;
}

/* Social Link */
.social-links {
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #6b7280;
}
.social-links a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
}

/* Labels */
label {
  display: block;
  margin-top: 24px;
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
}

/* Inputs */
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  background: #f9fafb;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
  outline: none;
}

/* Buttons */
button {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #5b21b6;
}

/* Form Step Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Step Animations */
.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background: #ede9fe;
  border-radius: 8px;
  margin-bottom: 32px;
  overflow: hidden;
}
.progress {
  height: 100%;
  width: 0;
  background: #7c3aed;
  transition: width 0.3s ease-in-out;
}

/* Checkbox */
.checkbox-label {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  flex-wrap: wrap;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  transform: scale(1.1);
  flex-shrink: 0;
}


/* File Upload */
input[type="file"] {
  padding: 12px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  margin-top: 8px;
  width: 100%;
}

small {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 6px;
  display: block;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-content {
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-content h2 {
  font-size: 1.5rem;
  color: #111827;
}

.modal-content p {
  margin-top: 12px;
  font-size: 1rem;
  color: #4b5563;
}
