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

/* Estedad Font (for body) */
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-ExtraLight.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "estedad";
  src: url("./../Font/Estedad/Estedad-Black.ttf");
  font-weight: 800;
}
/* Ray Font (for titles) */
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-Light.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-Bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "ray";
  src: url("./../Font/ray/Ray-ExtraBold.ttf");
  font-weight: 700;
}
/* Number*/
@font-face {
  font-family: "fanum";
  src: url("./../Font/Fanum/Vazir-Medium-FD-WOL.ttf");
  font-weight: 500;
}
.font-estedad {
  font-family: "estedad", sans-serif;
}

.font-ray {
  font-family: "ray", sans-serif;
}

/* Titles use Ray font automatically */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ray";
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

body {
  direction: rtl;
  font-family: "estedad", sans-serif;
}

/* Sage Green */
.text-sage-green-400 {
  color: #6b705c;
}

.text-sage-green-300 {
  color: #a3b18a;
}

.text-sage-green-200 {
  color: #c3ccb2;
}

.text-sage-green-100 {
  color: #d8decd;
}

/* Sage Green */
.text-sage-green-400 {
  color: #6b705c;
}

.text-sage-green-300 {
  color: #a3b18a;
}

.text-sage-green-200 {
  color: #c3ccb2;
}

.text-sage-green-100 {
  color: #d8decd;
}

/* Charcoal Blue */
.text-charcoal-blue-400 {
  color: #1d262b;
}

.text-charcoal-blue-300 {
  color: #4e5b62;
}

.text-charcoal-blue-200 {
  color: #616c72;
}

.text-charcoal-blue-100 {
  color: #a3aaae;
}

.text-gray-400 {
  color: #979A9E;
}

.text-gray-700 {
  color: #434850;
}

.bg-sage-green-400 {
  background-color: #6b705c;
}

.bg-sage-green-300 {
  background-color: #a3b18a;
}

.bg-sage-green-200 {
  background-color: #c3ccb2;
}

.bg-sage-green-100 {
  background-color: #d8decd;
}

/* Sand Beige */
.text-sand-beige-600 {
  color: #959593;
}

.text-sand-beige-500 {
  color: #d1d1cd;
}

.text-sand-beige-400 {
  color: #dfdfdb;
}

.text-sand-beige-300 {
  color: #e9e9e6;
}

.text-sand-beige-200 {
  color: #edede9;
}

.text-sand-beige-100 {
  color: #f4f4f2;
}

.bg-sand-beige-600 {
  background-color: #959593;
}

.bg-sand-beige-500 {
  background-color: #d1d1cd;
}

.bg-sand-beige-400 {
  background-color: #dfdfdb;
}

.bg-sand-beige-300 {
  background-color: #e9e9e6;
}

.bg-sand-beige-200 {
  background-color: #edede9;
}

.bg-sand-beige-100 {
  background-color: #f4f4f2;
}

.btn-custom, .btn-custom-yellow, .btn-custom-green, .btn-custom-red, .btn-custom-blue {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}
.btn-custom:hover, .btn-custom-yellow:hover, .btn-custom-green:hover, .btn-custom-red:hover, .btn-custom-blue:hover {
  opacity: 0.9;
}
.btn-custom:disabled, .btn-custom-yellow:disabled, .btn-custom-green:disabled, .btn-custom-red:disabled, .btn-custom-blue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-custom-blue {
  background-color: #1e90ff;
  color: #fff;
}

.btn-custom-red {
  background-color: #ff4d4f;
  color: #fff;
}

.btn-custom-green {
  background-color: #6b705c;
  border: 1px solid #6b705c;
  color: #f5f5f7;
}
.btn-custom-green:hover {
  background-color: #525647;
  border: 1px solid #525647;
}

.btn-custom-yellow {
  background-color: #fadb14;
  color: #000;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  border-bottom: 2px solid #d1d1cd;
  background-color: #f4f4f2;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
@media (max-width: 768px) {
  .header__container {
    padding: 15px;
  }
}
.header__logo {
  cursor: pointer;
}
/* Auth Layout */
.auth-layout {
  display: flex;
  flex: 1;
  padding: 40px 0;
  gap: 40px;
  background-color: #f4f4f2;
  min-height: 100vh;
}
.auth-layout .auth-image {
  flex: 1;
}
.auth-layout .auth-image img {
  max-width: 100%;
  height: auto;
}
.auth-layout .auth-content {
  flex: 1;
  display: flex;
}
.auth-layout .auth-content .auth-main {
  width: 100%;
}
@media (max-width: 768px) {
  .auth-layout {
    flex-direction: column;
    padding: 0;
    flex-direction: column-reverse;
    gap: 0;
  }
  .auth-layout .auth-image {
    flex: 0 0 250px;
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
  }
  .auth-layout .auth-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .auth-layout .auth-content {
    width: 100%;
    padding: 20px;
  }
}

.footer {
  background: #edede9;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer .footer-container {
    flex-direction: column;
    gap: 10px;
  }
}
.footer .footer-left {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer .footer-left .footer-text {
  margin: 0 10px;
  color: #333;
}
.footer .footer-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.footer .footer-divider {
  color: #333;
  font-size: 18px;
}
.footer .footer-right {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 10px;
  }
}

.form-title__wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.form-title__text {
  font-weight: 600;
  font-size: 32px;
}

.back-link-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.back-link-wrapper .link-icon {
  color: #616c72;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.back-link-wrapper .link-icon__pill {
  width: 42px;
  height: 21px;
  border-radius: 999px;
  border: 1px solid #d1d1cd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.back-link-wrapper .link-icon__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.back-link-wrapper .link-icon:hover .link-icon__arrow {
  animation: arrow-loop 0.8s ease-in-out;
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-50px);
    opacity: 0;
  }
  60% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .back-link-wrapper .back-link-wrapper {
    justify-content: end;
  }
}

.form-field {
  margin-bottom: 25px;
}
.form-field__label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #1d262b;
}
.form-field__input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background-color: #edede9;
  border: 1px solid #dfdfdb;
  transition: border-color 0.3s ease;
  font-family: fanum;
}
.form-field__input:focus {
  outline: none;
  border-color: #007bff;
}
.form-field__input.is-invalid {
  border-color: #ff4d4f;
}
.form-field__input::-moz-placeholder {
  color: #a3aaae;
}
.form-field__input::placeholder {
  color: #a3aaae;
}
.form-field__error-message {
  display: none;
  font-size: 12px;
  color: #ff4d4f;
  margin-top: 5px;
}
.form-field__input.is-invalid + .form-field__error-message {
  display: block;
}

.is-invalid .form-field__input {
  border-color: #ff4d4f;
}
.is-invalid .form-field__error-message {
  display: block;
}

.form-extra-links {
  display: flex;
  justify-content: space-between;
  color: #6b705c;
  font-size: 14px;
  padding-bottom: 15px;
}
.form-extra-links .forgot-password-text {
  color: #6b705c;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.signup-text {
  font-size: 0.9rem;
  color: #6b705c;
  padding-top: 15px;
}

.link {
  font-weight: 400;
  text-decoration: underline;
  color: #4e5b62;
  text-underline-offset: 4px;
  font-size: 14px;
}

.password-field .password-wrapper {
  position: relative;
}
.password-field .password-wrapper .form-field__input {
  width: 100%;
  box-sizing: border-box;
}
.password-field .password-wrapper .password-toggle {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.password-field .password-wrapper .password-toggle:hover {
  color: #000;
}
.password-field .password-wrapper .password-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.password-field .password-wrapper .password-toggle .icon-eye-off {
  display: none;
}
.password-field .password-wrapper .password-toggle.is-visible .icon-eye {
  display: none;
}
.password-field .password-wrapper .password-toggle.is-visible .icon-eye-off {
  display: block;
}

.dark-mode .password-toggle {
  color: #bbb;
}
.dark-mode .password-toggle:hover {
  color: #fff;
}

.resend-code .resend-btn {
  background: none;
  border: none;
  color: #6b705c;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
  position: relative;
}
.resend-code .resend-btn .timer {
  font-weight: bold;
  margin: 0 4px;
}

.verification-text {
  margin-bottom: 20px;
}
.verification-text .mobile-number {
  font-weight: 500;
  font-family: fanum;
}

.otp-Code {
  letter-spacing: 1rem;
  direction: ltr;
}/*# sourceMappingURL=auth.css.map */