.register {
  background: url("/assets/images/register-bg.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: calc(100vh - 75px);
}

@media (max-width: 768px) {
  .register {
    background: url("/assets/images/register-mobile-bg.png") no-repeat center center;
    background-size: cover;
  }
}

.account-register-area {
  min-width: 450px;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.register-stepper {
  min-width: 300px;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFF6D1 0%, #E6C77B 100%);
  box-shadow: 0 0 18px 4px #ffe9a3, 0 0 0 4px #e6c77b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: 'Aoboshi One', 'Arial', sans-serif;
  font-weight: 700;
  color: #191919;
  box-shadow: 0 0 12px 2px #ffe9a3;
  border: 2px solid #fff6d1;
  margin: 0 auto;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.step-circle.active {
  background: linear-gradient(180deg, #FFF6D1 0%, #E6C77B 100%);
  border: 2px solid #e6c77b;
}

.step-circle.step-outline {
  background: transparent;
  border: 3px solid #ffe9a3;
  color: #FFFBDF;
}

.step-line {
  height: 4px;
  background: linear-gradient(90deg, #FFF6D1 0%, #E6C77B 100%);
  box-shadow: 0 0 8px 2px #ffe9a3;
  border-radius: 2px;
  margin-top: 30px;
  min-width: 100px;
}

.register-stepper .text-uppercase {
  font-size: 13px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  color: #FFF6D1;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.form-icon {
  position: absolute;
  width: 25px;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.password-icon {
  width: 20px;
  left: 10px;
}

.birthdate-icon {
  left: 10px;
}

.password-toggle {
  right: 10px;
  cursor: pointer;
}

.form-control, .form-select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid #e6c77b;
  color: #fff;
  font-size: 16px !important;
  border-radius: 8px;
  transition: border 0.2s;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  padding-left: 40px !important;
}

.form-control:focus, .form-select:focus {
  border: 2px solid #ffe9a3;
  background: rgba(255,255,255,0.15);
  color: #191919;
}

.form-control::placeholder, .form-select::placeholder {
  color: #fff;
  opacity: 0.8;
  font-size: 16px !important;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

.btn-gradient {
  background: linear-gradient(90deg, #ffe9a3 0%, #e6c77b 100%);
  color: #191919;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 #ffe9a3;
  transition: background 0.2s, color 0.2s;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #e6c77b 0%, #ffe9a3 100%);
  color: #191919;
}

label, .form-label {
  font-size: 15px !important;
  font-family: 'Carlito', Arial, sans-serif !important;
  font-weight: 700 !important;
}

.checkbox-text .sign__label {
  font-size: 10px !important;
  line-height: 14px !important;
  font-weight: normal !important;
}

.btn, .btn-gradient, .btn-outline-light {
  font-family: 'Aoboshi One', Arial, sans-serif !important;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subtitle-text {
  font-size: 18px;
}

.birthdate-input::-webkit-inner-spin-button,
.birthdate-input::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.state-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 30px !important;
}

.state-input option {
  background-color: #191919;
  color: white;
}

.phone-country-select {
  padding-right: 0 !important;
}

.phone-input {
  padding-left: 0 !important;
}

@media (max-width: 800px) {
  .items {
    width: 90% !important;
  }
}

@media (max-width: 768px) {
  .account-register-area {
    min-width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .step-circle {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  .register-stepper {
    padding: 35px 0;
  }
  .text-white h1 {
    font-size: 26px !important;
  }
  .text-white .text-custom p {
    font-size: 15px !important;
  }
}
