/* ================= REGISTRATION CONTAINER ================= */

.registration-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 120px 20px 40px;
  font-family: "DM Sans", sans-serif;
}

.registration-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= HEADER ================= */

.registration-header {
  text-align: center;
  margin-bottom: 40px;
}

.registration-logo {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.registration-logo span {
  color: #ffc107;
}

.registration-subtitle {
  color: #fff;
  font-size: 16px;
  opacity: 0.9;
}

/* ================= PROGRESS ================= */

.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.progress-step {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.progress-step.active,
.progress-step.completed {
  color: #fff;
}

.progress-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-weight: 600;
}

.progress-step.active .progress-number,
.progress-step.completed .progress-number {
  background: #fff;
  color: #ffc107;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
}

/* ================= FORM ================= */

.form-section {
  margin-bottom: 30px;
}

.section-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.required {
  color: #ff4444;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ffc107;
  background: rgba(255, 255, 255, 0.2);
}

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

/* ================= FILE UPLOAD ================= */

.file-upload {
  position: relative;
  width: 100%;
}

.file-upload input[type="file"] {
  position: absolute;
  left: -9999px;
}

.file-upload-label {
  display: block;
  padding: 12px 16px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.file-upload-label:hover {
  border-color: #ffc107;
  background: rgba(255, 255, 255, 0.2);
}

/* ================= CHECKBOX ================= */

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 3px;
  transform: scale(1.2);
}

.checkbox-label {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

/* ================= BUTTON ================= */

.btn-container {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-back,
.btn-register {
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-back {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-back:hover {
  background: #fff;
  color: #ffc107;
}

.btn-register {
  background: #ffc107;
  color: #000;
  border: none;
}

.btn-register:hover {
  background: #fff;
  color: #000;
}

/* ================= ERROR ================= */

.error-message {
  background: rgba(255, 68, 68, 0.2);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.field-error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* ================= SUCCESS MODAL ================= */

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.success-content {
  background: #ffc107;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
}

.success-content h2,
.success-content p {
  color: #000;
}

/* Responsive styles moved to css/responsive-mobile.css */
