@charset "UTF-8";
body {
  background-image: url("../../images/login/Group.png");
  background-color: rgba(64, 64, 64, 0.04);
  background-size: cover;
  background-position: center;
}

.login-main {
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
}
.login-main .title-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-main .title-form > h1 {
  font-family: "W-Elham", Tahoma, sans-serif;
  font-weight: 500;
}
.login-main .title-form > h1 > mark {
  font-family: "W-Elham", Tahoma, sans-serif;
  color: #ff0000;
  background: none;
  font-weight: 500;
}

main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .box-login {
  width: 550px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 35px 48px 45px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  position: relative;
}
main .box-login .title-form {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  max-width: 90%;
  text-align: center;
}
main .box-login .title-form h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  color: #111;
}
main .box-login .title-form h1 mark {
  background: none;
  color: #ff0004;
  font-size: 42px;
}
main .box-login .title-form p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}
main .box-login .auth-tabs {
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  color: #555;
  font-size: 15px;
}
main .box-login .auth-tabs .tab-register {
  font-weight: 700;
}
main .box-login .auth-tabs .hello {
  padding-top: 30px;
  width: 100%;
  text-align: right;
  font-size: 15px;
}
main .box-login #step_phone,
main .box-login #step_otp {
  padding: 35px 0 10px;
  background: transparent;
}
main .box-login #step_phone p,
main .box-login #step_otp p {
  text-align: right;
  font-size: 14px;
  margin-bottom: 18px;
}
main .box-login #step_phone input,
main .box-login #step_otp input {
  width: 100%;
  height: 55px;
  border-radius: 18px;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  text-align: right;
  box-sizing: border-box;
}
main .box-login #step_phone input:focus,
main .box-login #step_otp input:focus {
  border-color: #ff3033;
}
main .box-login #step_phone button,
main .box-login #step_otp button {
  width: 100%;
  margin: 25px auto 0;
  display: block;
  height: 55px;
  border: 0;
  border-radius: 18px;
  background: #ff3038;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
main .box-login #step_phone button:hover,
main .box-login #step_otp button:hover {
  background: #ed0005;
}
main .box-login > div:last-child {
  background: transparent;
  padding: 0;
}
main .box-login > div:last-child p {
  text-align: center;
  font-size: 12px;
  line-height: 2;
}
main #login_section > div {
  padding-bottom: 10px;
  padding-top: 10px;
}
main #login_section > div > input {
  width: 100%;
  height: 55px;
  border-radius: 18px;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  text-align: right;
  box-sizing: border-box;
}
main #login_section > div > button {
  width: 100%;
  margin: 25px auto 0;
  display: block;
  height: 55px;
  border: 0;
  border-radius: 18px;
  background: #ff3038;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
main #login_section > div > button:hover {
  background: #ed0005;
}
main #forgot_password_section > div {
  padding-bottom: 10px;
  padding-top: 10px;
}
main #forgot_password_section > div > input {
  width: 100%;
  height: 55px;
  border-radius: 18px;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  text-align: right;
  box-sizing: border-box;
}
main #forgot_password_section > div > button {
  width: 100%;
  margin: 25px auto 0;
  display: block;
  height: 55px;
  border: 0;
  border-radius: 18px;
  background: #ff3038;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
main #forgot_password_section > div > button:hover {
  background: #ed0005;
}

@media screen and (max-width: 1024px) {
  main {
    padding: 30px 20px;
  }
  main .box-login {
    width: 500px;
    padding: 30px 35px 40px;
  }
  main .box-login .title-form {
    top: 70px;
    width: 250px;
  }
  main .box-login .title-form h1 {
    font-size: 36px;
  }
  main .box-login .title-form h1 mark {
    font-size: 36px;
  }
  main .box-login .title-form p {
    font-size: 13px;
    margin-top: 10px;
  }
  main .box-login .auth-tabs {
    font-size: 14px;
    padding-top: 15px;
  }
  main .box-login .auth-tabs .hello {
    padding-top: 25px;
    font-size: 14px;
  }
  main .box-login #step_phone,
  main .box-login #step_otp {
    padding: 30px 0 8px;
  }
  main .box-login #step_phone p,
  main .box-login #step_otp p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  main .box-login #step_phone input,
  main .box-login #step_otp input {
    height: 50px;
    font-size: 13px;
    padding: 0 18px;
  }
  main .box-login #step_phone button,
  main .box-login #step_otp button {
    height: 50px;
    font-size: 15px;
    margin-top: 20px;
  }
  main #login_section > div,
  main #forgot_password_section > div {
    padding-bottom: 8px;
    padding-top: 8px;
  }
  main #login_section > div > input,
  main #forgot_password_section > div > input {
    height: 50px;
    font-size: 13px;
    padding: 0 18px;
  }
  main #login_section > div > button,
  main #forgot_password_section > div > button {
    height: 50px;
    font-size: 15px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding: 20px 15px;
    min-height: 100vh;
    align-items: center;
  }
  main .box-login {
    width: 100%;
    max-width: 450px;
    padding: 25px 25px 35px;
    border-radius: 16px;
  }
  main .box-login .title-form {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  main .box-login .title-form h1 {
    font-size: 32px;
  }
  main .box-login .title-form h1 mark {
    font-size: 32px;
  }
  main .box-login .title-form p {
    font-size: 12px;
    margin-top: 8px;
  }
  main .box-login .auth-tabs {
    font-size: 13px;
    padding-top: 10px;
    gap: 6px;
  }
  main .box-login .auth-tabs .hello {
    padding-top: 20px;
    font-size: 13px;
  }
  main .box-login #step_phone,
  main .box-login #step_otp {
    padding: 20px 0 5px;
  }
  main .box-login #step_phone p,
  main .box-login #step_otp p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  main .box-login #step_phone input,
  main .box-login #step_otp input {
    height: 45px;
    font-size: 12px;
    padding: 0 15px;
    border-radius: 14px;
  }
  main .box-login #step_phone button,
  main .box-login #step_otp button {
    height: 45px;
    font-size: 14px;
    margin-top: 18px;
    border-radius: 14px;
  }
  main .box-login > div:last-child p {
    font-size: 11px;
    line-height: 1.8;
  }
  main #login_section > div,
  main #forgot_password_section > div {
    padding-bottom: 6px;
    padding-top: 6px;
  }
  main #login_section > div > input,
  main #forgot_password_section > div > input {
    height: 45px;
    font-size: 12px;
    padding: 0 15px;
    border-radius: 14px;
  }
  main #login_section > div > button,
  main #forgot_password_section > div > button {
    height: 45px;
    font-size: 14px;
    margin-top: 18px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 575px) {
  main {
    padding: 15px 12px;
  }
  main .box-login {
    padding: 20px 18px 30px;
    border-radius: 14px;
  }
  main .box-login .title-form {
    margin-bottom: 15px;
  }
  main .box-login .title-form h1 {
    font-size: 28px;
  }
  main .box-login .title-form h1 mark {
    font-size: 28px;
  }
  main .box-login .title-form p {
    font-size: 11px;
    margin-top: 6px;
  }
  main .box-login .auth-tabs {
    font-size: 12px;
    padding-top: 8px;
    gap: 5px;
  }
  main .box-login .auth-tabs .hello {
    padding-top: 15px;
    font-size: 12px;
  }
  main .box-login #step_phone,
  main .box-login #step_otp {
    padding: 15px 0 3px;
  }
  main .box-login #step_phone p,
  main .box-login #step_otp p {
    font-size: 11px;
    margin-bottom: 10px;
  }
  main .box-login #step_phone input,
  main .box-login #step_otp input {
    height: 42px;
    font-size: 11px;
    padding: 0 12px;
    border-radius: 12px;
  }
  main .box-login #step_phone button,
  main .box-login #step_otp button {
    height: 42px;
    font-size: 13px;
    margin-top: 15px;
    border-radius: 12px;
  }
  main .box-login > div:last-child p {
    font-size: 10px;
    line-height: 1.6;
  }
  main #login_section > div,
  main #forgot_password_section > div {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  main #login_section > div > input,
  main #forgot_password_section > div > input {
    height: 42px;
    font-size: 11px;
    padding: 0 12px;
    border-radius: 12px;
  }
  main #login_section > div > button,
  main #forgot_password_section > div > button {
    height: 42px;
    font-size: 13px;
    margin-top: 15px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 320px) {
  main {
    padding: 10px 8px;
  }
  main .box-login {
    padding: 15px 12px 25px;
    border-radius: 12px;
  }
  main .box-login .title-form h1 {
    font-size: 24px;
  }
  main .box-login .title-form h1 mark {
    font-size: 24px;
  }
  main .box-login .title-form p {
    font-size: 10px;
  }
  main .box-login .auth-tabs {
    font-size: 11px;
  }
  main .box-login .auth-tabs .hello {
    font-size: 11px;
    padding-top: 12px;
  }
  main .box-login #step_phone input,
  main .box-login #step_otp input {
    height: 38px;
    font-size: 10px;
    padding: 0 10px;
    border-radius: 10px;
  }
  main .box-login #step_phone button,
  main .box-login #step_otp button {
    height: 38px;
    font-size: 12px;
    border-radius: 10px;
  }
  main #login_section > div > input,
  main #forgot_password_section > div > input {
    height: 38px;
    font-size: 10px;
    padding: 0 10px;
    border-radius: 10px;
  }
  main #login_section > div > button,
  main #forgot_password_section > div > button {
    height: 38px;
    font-size: 12px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1400px) {
  main .box-login {
    width: 550px;
    padding: 40px 55px 50px;
  }
  main .box-login .title-form {
    width: 340px;
  }
  main .box-login .title-form h1 {
    font-size: 48px;
  }
  main .box-login .title-form h1 mark {
    font-size: 48px;
  }
  main .box-login .title-form p {
    font-size: 16px;
    margin-top: 14px;
  }
  main .box-login .auth-tabs {
    font-size: 16px;
  }
  main .box-login .auth-tabs .hello {
    font-size: 16px;
    padding-top: 35px;
  }
  main .box-login #step_phone,
  main .box-login #step_otp {
    padding: 40px 0 12px;
  }
  main .box-login #step_phone p,
  main .box-login #step_otp p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  main .box-login #step_phone input,
  main .box-login #step_otp input {
    height: 60px;
    font-size: 15px;
    padding: 0 22px;
  }
  main .box-login #step_phone button,
  main .box-login #step_otp button {
    height: 60px;
    font-size: 17px;
    margin-top: 30px;
  }
  main #login_section > div > input,
  main #forgot_password_section > div > input {
    height: 60px;
    font-size: 15px;
    padding: 0 22px;
  }
  main #login_section > div > button,
  main #forgot_password_section > div > button {
    height: 60px;
    font-size: 17px;
    margin-top: 30px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  main {
    padding: 10px 20px;
    min-height: 100vh;
  }
  main .box-login {
    padding: 15px 30px 20px;
  }
  main .box-login .title-form {
    margin-bottom: 10px;
  }
  main .box-login .title-form h1 {
    font-size: 24px;
  }
  main .box-login .title-form h1 mark {
    font-size: 24px;
  }
  main .box-login .title-form p {
    font-size: 11px;
    margin-top: 4px;
  }
  main .box-login .auth-tabs {
    padding-top: 5px;
    font-size: 12px;
  }
  main .box-login .auth-tabs .hello {
    padding-top: 10px;
    font-size: 12px;
  }
  main .box-login #step_phone,
  main .box-login #step_otp {
    padding: 10px 0 3px;
  }
  main .box-login #step_phone p,
  main .box-login #step_otp p {
    font-size: 11px;
    margin-bottom: 8px;
  }
  main .box-login #step_phone input,
  main .box-login #step_otp input {
    height: 35px;
    font-size: 11px;
    padding: 0 12px;
  }
  main .box-login #step_phone button,
  main .box-login #step_otp button {
    height: 35px;
    font-size: 12px;
    margin-top: 10px;
  }
  main #login_section > div,
  main #forgot_password_section > div {
    padding-bottom: 3px;
    padding-top: 3px;
  }
  main #login_section > div > input,
  main #forgot_password_section > div > input {
    height: 35px;
    font-size: 11px;
    padding: 0 12px;
  }
  main #login_section > div > button,
  main #forgot_password_section > div > button {
    height: 35px;
    font-size: 12px;
    margin-top: 10px;
  }
}
/* ============================================================
   استایل یکپارچه برای تمام مراحل ثبت‌نام و ورود
   ============================================================ */
/* 1. استایل کانتینر مراحل و متن‌ها */
#step_phone,
#step_otp,
#step_profile {
  padding: 35px 0 10px;
  background: transparent;
}

#step_phone p,
#step_otp p,
#step_profile p {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #111;
}

#step_profile p strong,
#step_otp p strong {
  color: #ff3038;
  font-weight: 700;
}

/* 2. استایل اینپوت‌ها در تمام مراحل */
#step_phone > div > input,
#step_otp > div > input,
#step_profile > div > input {
  width: 100%;
  height: 55px;
  border-radius: 18px;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  text-align: right;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: "BYekan", Tahoma, Arial, sans-serif;
}

#step_phone > div > input:focus,
#step_otp > div > input:focus,
#step_profile > div > input:focus {
  border-color: #ff3033;
  box-shadow: 0 0 0 3px rgba(255, 48, 51, 0.1);
}

/* 3. استایل دکمه‌های اصلی در تمام مراحل */
#step_phone > div > button,
#step_otp > div > button,
#step_profile > div > button {
  width: 100%;
  margin: 25px auto 0;
  display: block;
  height: 55px;
  border: 0;
  border-radius: 18px;
  background: #ff3038;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "BYekan", Tahoma, Arial, sans-serif;
}

#step_phone > div > button:hover,
#step_otp > div > button:hover,
#step_profile > div > button:hover {
  background: #ed0005;
}

/* استایل دکمه‌های غیرفعال (Disabled) */
#step_phone > div > button:disabled,
#step_otp > div > button:disabled,
#step_profile > div > button:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

/* 4. استایل اختصاصی لینک فراموشی رمز در مرحله پروفایل */
#step_profile > div > a#forgot_password_btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

#step_profile > div > a#forgot_password_btn:hover {
  color: #ff3038;
}

/* 5. استایل دکمه ارسال مجدد کد (بازنویسی استایل inline برای تمیزی) */
#resend_otp_btn {
  background: none !important;
  border: none !important;
  color: #ff3038 !important;
  cursor: pointer !important;
  text-decoration: underline !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin: 15px auto 0 !important;
  height: auto !important;
  width: auto !important;
  display: block !important;
}

/* ============================================================
   Responsive Design (دقیقاً منطبق بر کد SCSS شما)
   ============================================================ */
/* Tablet (1024px) */
@media screen and (max-width: 1024px) {
  #step_phone, #step_otp, #step_profile {
    padding: 30px 0 8px;
  }
  #step_phone p, #step_otp p, #step_profile p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #step_phone > div > input, #step_otp > div > input, #step_profile > div > input {
    height: 50px;
    font-size: 13px;
    padding: 0 18px;
  }
  #step_phone > div > button, #step_otp > div > button, #step_profile > div > button {
    height: 50px;
    font-size: 15px;
    margin-top: 20px;
  }
}
/* Mobile Landscape (767px) */
@media screen and (max-width: 767px) {
  #step_phone, #step_otp, #step_profile {
    padding: 20px 0 5px;
  }
  #step_phone p, #step_otp p, #step_profile p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  #step_phone > div > input, #step_otp > div > input, #step_profile > div > input {
    height: 45px;
    font-size: 12px;
    padding: 0 15px;
    border-radius: 14px;
  }
  #step_phone > div > button, #step_otp > div > button, #step_profile > div > button {
    height: 45px;
    font-size: 14px;
    margin-top: 18px;
    border-radius: 14px;
  }
}
/* Mobile Portrait (575px) */
@media screen and (max-width: 575px) {
  #step_phone, #step_otp, #step_profile {
    padding: 15px 0 3px;
  }
  #step_phone p, #step_otp p, #step_profile p {
    font-size: 11px;
    margin-bottom: 10px;
  }
  #step_phone > div > input, #step_otp > div > input, #step_profile > div > input {
    height: 42px;
    font-size: 11px;
    padding: 0 12px;
    border-radius: 12px;
  }
  #step_phone > div > button, #step_otp > div > button, #step_profile > div > button {
    height: 42px;
    font-size: 13px;
    margin-top: 15px;
    border-radius: 12px;
  }
}
/* Extra Small (320px) */
@media screen and (max-width: 320px) {
  #step_phone > div > input, #step_otp > div > input, #step_profile > div > input {
    height: 38px;
    font-size: 10px;
    padding: 0 10px;
    border-radius: 10px;
  }
  #step_phone > div > button, #step_otp > div > button, #step_profile > div > button {
    height: 38px;
    font-size: 12px;
    border-radius: 10px;
  }
}/*# sourceMappingURL=login.css.map */