.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #e6edef;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

.main-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header-content .logo {
  display: block;
}

.header-content .logo img {
  height: 44px;
  width: auto;
  display: block;
}

.header-content .btn {
  height: 40px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #e34c0d !important;
  color: #e34c0d !important;
  transition: all 0.3s ease;
}

.registration-page {
  background: #f8f8f8;
  min-height: calc(100vh - 85px);
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 4px;
}

.registration-page .infos {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1200px) {
  .registration-page .infos {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .registration-page .infos {
    display: none;
  }
}

.registration-page .infos .title {
  font-size: 40px;
  font-weight: 700;
  color: #e34c0d;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media(max-width: 1200px) {
  .registration-page .infos .title {
    font-size: 32px;
  }
}

.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features .feature-item .icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .feature-item .icon img {
  width: 90%;
  height: auto;
}

.feature-item .feature-content {
  width: calc(100% - 40px);
}

.features .feature-item .feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #e34c0d;
}

.features .feature-item .desc {
  font-size: 16px;
  color: #555;  
  line-height: 1.4;
}

.registration-page .content {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.registration-page .content .title {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.registration-page .content .account-form {
  width: 100%;
  max-width: 500px;
}

.account-form hr {
  background-color: #e6edef !important;
  opacity: 1;
}

.account-form .card .card-body {
  padding: 32px;
}

@media (max-width: 768px) {
  .registration-page .content {
    width: 100%;
    padding: 16px;
  }
  .registration-page .card-body {
    padding: 16px !important;
  }
}

.account-form .input-group-text {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid #c2c2c2 !important;
}

.text-right {
  text-align: right !important;
}


.registration-page .content .account-form label {
  margin-bottom: 8px;
  font-weight: 500;
}

.registration-page .content .account-form .form-group {
  margin-bottom: 24px;
}

.registration-page .content .account-form .form-control,
.registration-page .content .account-form .form-select {
  border-radius: 8px;
  height: 44px;
  padding: 6px 14px;
}

.registration-page .content .card {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.03);
}

.registration-page .content .subtitle {
  color: #e34c0d;
  font-size: 18px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e6edef;
}

.hidden {
  display: none;
}

.account-type {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.account-type .form-check {
  width: 50%;
  margin-bottom: 0;
}

.actions {
  display: flex;
  justify-content: space-between;
}

.actions.end {
  justify-content: flex-end;
}



/* Wizard style */

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.separator {
  width: 100%;
  height: 2px;
  background: #e6edef;
}

.separator.active {
  background: #3d6abc;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e34c0d;
  opacity: 0.6;
}

.step .count {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e34c0d;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
}

.step .text {
  display: block;
  font-size: 18px;
}

.step.active {
  opacity: 1;
}

.step.active .count {
  background: #e34c0d;
  color: #fff;
}

.step-indicator.job-offer .step {
  width: 180px;
}

.step-indicator.job-offer .count {
  width: 40px;
  min-width: 40px;
  height: 40px;
}

.step-indicator.job-offer .text {
  font-size: 16px;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .step-indicator {
    gap: 12px;
  }
  .step .text {
    font-size: 15px;
  }
  .step-indicator.job-offer .count {
    width: 35px;
    min-width: 35px;
    height: 30px;
  }
}