* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:active {
  opacity: 0.8;
}

/* Ümumi konteyner - bütün ekran boyu uzanır */
.containerMain {
  max-width: 480px; /* Mobil fokuslu */
  min-height: 100vh;
  margin: 0 auto;
  font-family: "Comfortaa", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
}

/* Addımlar (Step) konteyneri - boş sahəni doldurur */
.step {
  display: none;
  flex-direction: column;
  flex: 1; /* Düyməni aşağı itələmək üçün vacibdir */
}

.step.active {
  display: flex;
}

.pageheader1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.button1 {
  height: 44px;
  width: 44px;
  border-radius: 17px;
  background-color: #f2f4f7;
}

/* Mətn hissəsi */
.pageContainer {
  margin-bottom: 24px;
}

.pagecontent1 h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}

.pagecontent1 p {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

/* İnputlar - Sabit px silindi, 100% edildi */
input {
  width: 100%;
  max-width: 351px;
  height: 52px;
  background-color: #f2f4f7;
  border: none;
  border-radius: 21px;
  padding: 15px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  display: block;
  margin: 0 auto;
}

/* OTP xanaları üçün konteyner */
.code-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.code-input {
  width: 14%; /* Ekrana görə dəyişir */
  max-width: 55px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  border-radius: 12px;
}

/* Şifrə xanaları */
.passwordContainerDiv {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.passwordInput1 {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.passwordInput2 {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* Sayğac və Resend hissəsi */
.resend-code {
  margin-top: 20px;
  text-align: left;
}

.resend-code p {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Düymə bölməsi - Həmişə ən aşağıda */
.continueDiv {
  margin-top: auto; /* Avtomatik yuxarıdan boşluq buraxır */
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.btnContinue {
  width: 100%;
  max-width: 351px;
  height: 52px;
  border-radius: 21px;
  background-color: #1a4d2e;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  max-width: 211px;
  height: 8px;
  background: #f2f4f7;
  border-radius: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #1a4d2e;
  transition: width 0.3s;
}

/* MOBİL ÜÇÜN XÜSUSİ DÜZƏLİŞLƏR */
@media (max-width: 380px) {
  .pagecontent1 h1 {
    font-size: 20px;
  }
  
  .code-input {
    height: 50px;
    font-size: 20px;
    max-width: 45px;
  }
  
  .btnContinue {
    height: 48px;
  }
}