* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: #0b2a4a;
}

/* TITLE */
.page-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 36px;
}

/* STEPS */
.steps-wrapper {
  width: 1100px;
  margin: 0 auto;
  background: #ecfbf8;
  border-radius: 16px;
  padding: 26px 32px;
}

.steps {
  display: flex;
  align-items: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a8ca3;
  min-width: 140px;
}

.step img {
  width: 36px;
  height: 36px;
}

.step.active span {
  color: #0b2a4a;
  font-weight: 600;
}

.line {
  flex: 1;
  height: 1px;
  border-top: 2px dashed #bfd9ff;
  margin: 0 10px;
}

.line.completed {
  border-color: #7ce6b0;
}

/* CARD */
.card {
  width: 1100px;
  margin: 36px auto;
  background: #f2fefc;
  border-radius: 20px;
  padding: 40px;
}

.card-title {
  text-align: center;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 26px;
}

/* ALERT */
.alert-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #86c7ff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 30px;
}

.alert-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.alert-box p {
  font-size: 14px;
  color: #5f738c;
  line-height: 21px;
  margin: 0;
}

/* CHECKBOXES */
.checks {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 14px;
  align-items: start;
  cursor: pointer;
}

.check input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  cursor: pointer;
}

.check-text {
  font-size: 14px;
  color: #6b7f99;
  line-height: 22px;
}

.check-text strong {
  color: #0b2a4a;
}

.check-text a {
  color: #4da3ff;
  text-decoration: none;
}

/* ACTION BUTTONS */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
}

.continue-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #6ec1ff, #4da3ff);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

/* BACK BUTTON */
.back-btn1 {
  background: linear-gradient(90deg, #a6cfff, #7db7ff);
}

/* DISABLED STATE */
.continue-btn:disabled {
  background: #2fd5fe;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.6;
}
