@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(45deg, #2596be 0%, #4a6fa5 50%, #5b4a9e 100%);
  --button-gradient: linear-gradient(135deg, #6b46c1 0%, #7c3aed 100%);
  --accent-color: #FBE3AF;
}

body {
  background-color: #f5f5f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", "Poppins", sans-serif;
}

.main-container {
  max-width: 1400px;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  padding: 40px 40px;
  overflow: hidden;
}

/* Sidebar Styles */
.sidebar {
  background: var(--primary-gradient);
  color: white;
  padding: 60px 40px;
  min-height: 600px;
  max-height: 780px;
  position: relative;
  border-radius: 20px;
  height: auto;
}

.logo {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 60px;
}

.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 20px 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50px;
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.step.active:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.6);
}

.step-indicator {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.step.completed .step-indicator {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.step.completed .step-indicator::before {
  content: "✓";
  color: white;
  color: #3387b4;
  font-weight: bold;
}

.step.active .step-indicator {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.step-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.step.active .step-label,
.step.completed .step-label {
  opacity: 1;
}

.powered-by {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: 12px;
  opacity: 0.8;
}

/* Content Area */
.content-area {
  padding: 40px 0 40px 40px;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.form-step {
  display: none;
  margin: auto 0;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-title {
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.form-control,
.form-select {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: #6b46c1;
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.15);
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

textarea.form-control {
  min-height: 100px;
}

.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.upload-area:hover {
  border-color: #6b46c1;
  background: #f9fafb;
}

.upload-icon {
  font-size: 48px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.btn-primary-custom {
  background: var(--button-gradient);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
  color: white;
}

.btn-secondary-custom {
  background: white;
  color: #6b46c1;
  border: 1px solid #d1d5db;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: #f9fafb;
  color: #6b46c1;
}

.sign-in-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

.sign-in-link a {
  color: #6b46c1;
  text-decoration: none;
  font-weight: 500;
}

.sign-in-link a:hover {
  text-decoration: underline;
}

.optional-label {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.form-check-input:checked {
  background-color: #6b46c1;
  border-color: #6b46c1;
}

/* Success Modal */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.success-modal.show {
  display: flex;
}

.success-modal-content {
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.success-icon {
  width: 120px;
  height: 120px;
  background: #10b981;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPop 0.6s ease 0.2s backwards;
}

@keyframes iconPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.success-icon i {
  font-size: 60px;
  color: white;
}

.success-checkmark {
  font-size: 60px;
  color: white;
  font-weight: bold;
}

.success-modal h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.success-modal p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 8px;
}

.success-modal .user-email {
  color: #6b46c1;
  font-weight: 500;
}

.success-modal .spam-notice {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.success-modal .spam-notice p:first-child {
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

@media (max-width: 991.8px) {
  .sidebar {
    padding: 40px 30px;
  }
  .content-area {
    padding: 30px 0;
  }
  .progress-steps {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
  }
  .form-title {
    font-size: 20px;
  }
  .step {
    flex-direction: column;
    padding: 10px 15px;
    text-align: center;
    min-width: 100px;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .step-label {
    font-size: 11px;
  }
  .powered-by {
    position: static;
    margin-top: 30px;
    display: none;
  }
  .main-container {
    height: auto;
  }
  .sidebar {
    min-height: 200px;
  }
  .sidebar .logo {
    text-align: center;
    margin-bottom: 0;
  }
  .sidebar .logo img {
    width: 250px;
    margin: 0 auto;
  }
  .sidebar .description {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .sidebar {
    padding: 20px 20px 20px;
  }
  .main-container {
    padding: 25px;
  }
  .content-area {
    padding: 30px 0px 0px;
  }
  .sidebar .logo img {
    width: 200px;
  }
  .progress-steps {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
  }
  .step {
    flex-direction: column;
    padding: 10px 15px;
    text-align: center;
    min-width: 40px;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .step-label {
    font-size: 11px;
    display: none;
  }
  .powered-by {
    position: static;
    margin-top: 30px;
  }
  .form-label {
    margin-bottom: 5px;
  }
  .form-control, .form-select {
    padding: 12px 14px;
  }
  .btn-primary-custom, .btn-secondary-custom {
    padding: 12px 28px;
  }
  .success-modal-content {
    padding: 30px 20px 20px;
  }
  .success-modal h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  .success-checkmark {
    font-size: 42px;
  }
  .success-modal .spam-notice {
    padding-top: 12px;
    margin-top: 12px;
  }
}/*# sourceMappingURL=signup.css.map */