body {
  background: url(./images/Container.png);

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  padding: 20px 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.form-container {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: white;
  position: relative;
}

.step-number.active {
  background: #10b981;
}

.step-number.inactive {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.step-line {
  width: 60px;
  height: 3px;
  background: #10b981;
  margin: 0 10px;
}

.step-line.inactive {
  background: rgba(255, 255, 255, 0.3);
}

.form-step {
  display: none;
  animation: fadeInUp 0.3s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.form-label {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  color: white;
}

.form-select option {
  background: #764ba2;
  color: white;
}

.btn-primary {
  background: #ffffff40;
  border-radius: 25px;
  text-align: center;
  padding: 12px 24px;
  transition: all 0.3s ease;
  border: 2px solid #928a8a;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

button.content-btn.btn-primary img {
  padding-right: 9px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffffff40;
  border: 2px solid #928a8a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  width: 48%;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

button.btn-pres.btn-primary {
  width: 48%;
}

button.next-btn.btn-primary {
  background: linear-gradient(90deg, #ec4899, #a855f7);
  padding: 18px 159px;
  border: none;
}

/* content text  */
h1.content-title {
  color: #fff;
  font-size: 36px;
  line-height: 36px;
  font-weight: 900;
  font-family: arial;
}

h3.content-text {
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
  padding-bottom: 32px;
}

.row-name {
  display: flex;
  gap: 15px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.form-check {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.form-check:hover {
  background: rgba(255, 255, 255, 0.15);
}

.form-check-input:checked {
  background-color: #10b981;
  border-color: #10b981;
}

.form-check-label {
  color: white;
  font-weight: 500;
}

.input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

input.form-control {
  background-color: #ffffff3b;
  height: 50px;
  border-radius: 12px;
}
input.form-control:focus {
  background-color: #ffffff3b;
}

.input-group .form-control {
  margin-bottom: 0;
}

.upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-area:hover {
  border-color: #10b981;
  background: rgba(255, 255, 255, 0.1);
}

.upload-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.upload-text {
  color: white;
  font-weight: 500;
  margin-bottom: 5px;
}

.upload-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-social {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-social:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.or-divider {
  text-align: center;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.or-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.bottom-links {
  text-align: center;
  margin-top: 30px;
}

.bottom-links a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

.bottom-links a:hover {
  text-decoration: underline;
}

.back-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.back-link:hover {
  color: white;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.password-field {
  position: relative;
}
