/* REGISTRATION PAGE STYLES */
.registration-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
  padding: 40px 0;
  margin-top: 5rem;
}

.registration-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.registration-header {
  text-align: center;
  margin-bottom: 40px;
}

.registration-header h1 {
  color: #d946ef;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(217, 70, 239, 0.1);
}

.registration-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.registration-guide {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(217, 70, 239, 0.1);
  height: fit-content;
  position: sticky;
  top: 6rem;
}

.registration-guide h3 {
  color: #1e293b;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
}

.registration-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.registration-guide li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #475569;
  font-size: 15px;
}

.registration-guide li:last-child {
  margin-bottom: 0;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: #ecfdf5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-form-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(217, 70, 239, 0.1);
}

.registration-form {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #1e293b;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #d946ef;
  background: white;
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder {
  color: #94a3b8;
  font-style: italic;
}

.form-disclaimer {
  margin: 30px 0 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
  border-radius: 12px;
  border-left: 4px solid #d946ef;
}

.form-disclaimer p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #d946ef, #e879f9);
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(217, 70, 239, 0.3);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 70, 239, 0.4);
  background: linear-gradient(135deg, #c026d3, #d946ef);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: linear-gradient(135deg, #9ca3af, #d1d5db);
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 10px rgba(156, 163, 175, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .registration-guide {
    position: static;
  }
}

@media (max-width: 768px) {
  .registration-container {
    padding: 0 15px;
  }
  
  .registration-page {
    padding: 20px 0;
  }
  
  .registration-header h1 {
    font-size: 28px;
  }
  
  .registration-guide,
  .registration-form-container {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .registration-page {
    padding: 15px 0;
  }
  
  .registration-container {
    padding: 0 10px;
  }
  
  .registration-header h1 {
    font-size: 24px;
  }
  
  .registration-guide,
  .registration-form-container {
    padding: 20px 15px;
  }
  
  .form-group input {
    padding: 12px 14px;
  }
  
  .submit-btn {
    padding: 14px 25px;
    font-size: 15px;
  }
}

/* Alert Styles */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
  color: #721c24;
}

/* Loading State */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
