/* [project]/src/app/signin/auth.css [app-client] (css) */
.auth-container {
  background: radial-gradient(600px 500px at 50% 10%, #2e66ff59, #0000 60%), linear-gradient(#050a23 0%, #18358d 55%, #6885cd 100%);
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  font-family: vazirmatn, sans-serif;
  position: relative;
  overflow: hidden;
}

.progress-bars {
  z-index: 10;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.progress-bar {
  background: #fff3;
  border-radius: 2px;
  flex: none;
  width: 40px;
  height: 4px;
  overflow: hidden;
}

.progress-fill {
  background: #fff;
  width: 0%;
  height: 100%;
  transition: none;
}

.progress-bar.active .progress-fill {
  animation: 8s linear forwards fillProgress;
}

.progress-bar.completed .progress-fill {
  width: 100%;
}

@keyframes fillProgress {
  to {
    width: 100%;
  }
}

.slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  opacity: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 120px;
  transition: opacity .8s;
  display: flex;
  position: absolute;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  text-align: center;
  opacity: 0;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
  transition: all .6s;
  transform: translateY(20px);
}

.slide.active .slide-content {
  opacity: 1;
  animation: .8s forwards slideContentIn;
  transform: translateY(0);
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-image-container {
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
}

.slide-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.slide-title {
  color: #fff;
  text-shadow: 0 2px 4px #0000004d;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}

.slide-description {
  color: #ffffffe6;
  text-shadow: 0 1px 2px #0003;
  font-size: 14px;
  line-height: 1.6;
}

.login-form-container {
  z-index: 20;
  background: #e8ebf4;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px 24px 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -10px 40px #0003;
}

.login-form-container:before {
  content: "";
  background: #d1d5db;
  border-radius: 2px;
  width: 40px;
  height: 4px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.form-header {
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
}

.form-title {
  color: #0b1120;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.form-subtitle {
  color: #7f8c8d;
  max-width: 280px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.5;
}

form {
  width: 100%;
  max-width: 400px;
}

.logo-image, .logo-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-group {
  background: #f2f3f8;
  border: 1px solid #fff;
  border-radius: 16px;
  align-items: center;
  margin-bottom: 20px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.form-group:focus-within {
  background: #f2f3f8;
  border-color: #fff;
}

.input-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23239f40' d='M0 0h640v160H0z'/%3E%3Cpath fill='%23fff' d='M0 160h640v160H0z'/%3E%3Cpath fill='%23da0000' d='M0 320h640v160H0z'/%3E%3Cpath fill='%23da0000' d='M256.4 185.3c15.8-6.6 24-21.6 24-38.6 0-21.7-16-41.9-38-46.7-27.1-5.9-46.7 15.3-46.7 39.5 0 26.5 21.8 45.8 46.7 45.8 5.7 0 10.9-1.1 15.8-3l-1.8 3Zm-52.9 89.4c0 24.2 19.6 45.4 46.7 39.5 22-4.8 38-25 38-46.7 0-17-8.2-32-24-38.6l1.8 3c-4.9-1.9-10.1-3-15.8-3-24.9 0-46.7 19.3-46.7 45.8Zm132.9 3.9c-2.4-7.4-4.8-14.8-8-22.1l-24.3 12.5 13.9-24.3c-4.8-6.1-9.9-11.8-15.3-17.1l18.4 21.2-5.4-27.4c-6.6-4.2-13.6-8-20.8-11.4l26.9 7-23.7-14.7c-7.9-2.1-16.1-3.6-24.6-4.4l27.9-6.3h-28l27.9 6.3c-8.5.8-16.7 2.3-24.6 4.4l-23.7 14.7 26.9-7c-7.2 3.4-14.2 7.2-20.8 11.4l-5.4 27.4 18.4-21.2c-5.4 5.3-10.5 11-15.3 17.1l13.9 24.3-24.3-12.5c-3.2 7.3-5.6 14.7-8 22.1l25.8-10.3-1.6 27.8c-1.4 8.2-2.3 16.6-2.5 25.1h28c-.2-8.5-1.1-16.9-2.5-25.1l-1.6-27.8 25.8 10.3Z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.form-input {
  color: #1c1a41;
  text-align: left;
  direction: ltr;
  background: none;
  border: none;
  width: 100%;
  padding: 18px 16px;
  font-family: vazirmatn, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.form-input:focus {
  outline: none;
}

.form-input::placeholder {
  color: #bdc3c7;
  font-size: 16px;
  font-weight: normal;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  display: none;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.error-message.show {
  display: block;
}

.btn-submit {
  color: #fff;
  cursor: pointer;
  background: #1c1a41;
  border: none;
  border-radius: 16px;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  font-family: vazirmatn, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.btn-submit:hover {
  background: #1a2840;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  background: #95a5a6;
  transform: none;
}

.login-with-client-id {
  text-align: center;
  color: #464646;
  cursor: pointer;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

.form-footer {
  display: none;
}

.logo-section {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 5;
  background: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 40px;
  right: 20px;
}

.logo-image, .logo-text {
  display: none;
}

.logo-section:after {
  content: "?";
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.touch-nav {
  z-index: 8;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 300px;
}

.touch-nav.left {
  left: 0;
}

.touch-nav.right {
  right: 0;
}

.btn-submit.loading {
  color: #0000;
  position: relative;
}

.btn-submit.loading:after {
  content: "";
  border: 3px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  animation: .6s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media (min-width: 480px) {
  .login-form-container {
    border-radius: 24px;
    width: 400px;
    bottom: 30px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    box-shadow: 0 10px 40px #0000004d;
  }

  .login-form-container:before {
    display: none;
  }
}

/*# sourceMappingURL=src_app_signin_auth_7ed7694c.css.map*/