/* Signup Page Layout */
.signup-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #F6F7F8 0%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 6rem;
  position: relative;
}

.signup-content {
  width: 100%;
  max-width: 700px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Progress Section */
.progress-section {
  background: linear-gradient(180deg, #E6ECF5 0%, #FFF 100%);
  border: 1px solid #DFE5EC;
  padding: 2rem;
  position: relative;
}

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

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.progress-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4A5568;
}

.progress-percentage {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D3748;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #CBD5E0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(97deg, #0A58A5 -8.25%, #161921 134.93%);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 0%;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2D3748;
  text-align: center;
}

/* Signup Form */
.signup-form-container {
  padding: 3rem 2.5rem;
}

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

.signup-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 0.5rem;
}

.signup-description {
  font-size: 1rem;
  color: #4C5A6E;
  line-height: 1.6;
}


/* Form Styles */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.form-input {
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
  color: #1A202C;
  background: #F9FAFB;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #0A58A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(10, 88, 165, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input.error {
  border-color: #EF4444;
  background: #FEF2F2;
}

.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-error h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-error ul {
  margin: 0;
  padding-left: 1.25rem;
}

.form-error li {
  margin-bottom: 0.25rem;
}

.field-error {
  color: #EF4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Form Actions */
.form-actions {
  margin-top: 1rem;
}

.signup-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(97deg, #0A58A5 -8.25%, #161921 134.93%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 88, 165, 0.3);
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 88, 165, 0.4);
}

.signup-button:active {
  transform: translateY(0);
}

.signup-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Signup Footer */
.signup-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
}

.login-link {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}

.login-link-text {
  color: #0A58A5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-link-text:hover {
  color: #161921;
  text-decoration: underline;
}

/* Page Animation */
.signup-container {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.progress-section {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.signup-form-container {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.progress-step {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

.progress-step:nth-child(1) { animation-delay: 0.3s; }
.progress-step:nth-child(2) { animation-delay: 0.35s; }
.progress-step:nth-child(3) { animation-delay: 0.4s; }
.progress-step:nth-child(4) { animation-delay: 0.45s; }
.progress-step:nth-child(5) { animation-delay: 0.5s; }
.progress-step:nth-child(6) { animation-delay: 0.55s; }

/* Responsive Design */
@media (max-width: 768px) {
  .signup-container {
    padding: 1rem;
    padding-top: 5rem;
  }
  
  .signup-content {
    max-width: 100%;
  }
  
  .progress-section {
    padding: 1.5rem;
  }
  
  .progress-steps {
    gap: 0.75rem;
  }
  
  .step-indicator {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  
  .step-label {
    font-size: 9px;
    max-width: 70px;
    margin-top: 38px;
  }
  
  .signup-form-container {
    padding: 2rem 1.5rem;
  }
  
  .signup-title {
    font-size: 1.75rem;
  }
  
  .signup-description {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .progress-steps {
    gap: 0.5rem;
  }
  
  .step-indicator {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  
  .step-label {
    font-size: 8px;
    max-width: 60px;
    margin-top: 34px;
  }
  
  .signup-form-container {
    padding: 1.5rem 1rem;
  }
  
  .signup-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 0.875rem;
  }
  
  .signup-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}
