/* [project]/src/app/register/page.module.css [app-client] (css) */
.page-module__nC61QG__loginPage {
  background: #f5eef1;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 160px 20px 60px;
  display: flex;
  position: relative;
  overflow: hidden auto;
}

@media (max-height: 1000px) {
  .page-module__nC61QG__loginPage {
    align-items: flex-start;
  }
}

.page-module__nC61QG__gridBg {
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(#00000008 1px, #0000 1px), linear-gradient(90deg, #00000008 1px, #0000 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
}

.page-module__nC61QG__avatarRing {
  z-index: 1;
  pointer-events: none;
  border: 1.5px solid #dc788c33;
  border-radius: 50%;
  width: 700px;
  height: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-module__nC61QG__floatingAvatar {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: 4s ease-in-out infinite page-module__nC61QG__floatBob;
  display: flex;
  position: absolute;
}

.page-module__nC61QG__floatingAvatar:first-child {
  animation-delay: 0s;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.page-module__nC61QG__floatingAvatar:nth-child(2) {
  animation-delay: .5s;
  top: 10%;
  right: -20px;
}

.page-module__nC61QG__floatingAvatar:nth-child(3) {
  animation-delay: 1s;
  top: 45%;
  right: -40px;
}

.page-module__nC61QG__floatingAvatar:nth-child(4) {
  animation-delay: 1.5s;
  bottom: 10%;
  right: 5%;
}

.page-module__nC61QG__floatingAvatar:nth-child(5) {
  animation-delay: 2s;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.page-module__nC61QG__floatingAvatar:nth-child(6) {
  animation-delay: 2.5s;
  bottom: 10%;
  left: 5%;
}

.page-module__nC61QG__floatingAvatar:nth-child(7) {
  animation-delay: 3s;
  top: 45%;
  left: -40px;
}

.page-module__nC61QG__floatingAvatar:nth-child(8) {
  animation-delay: 3.5s;
  top: 10%;
  left: -20px;
}

@keyframes page-module__nC61QG__floatBob {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.page-module__nC61QG__floatingAvatar:first-child, .page-module__nC61QG__floatingAvatar:nth-child(5) {
  animation-name: page-module__nC61QG__floatBobX;
}

@keyframes page-module__nC61QG__floatBobX {
  0%, 100% {
    transform: translateX(-50%)translateY(0);
  }

  50% {
    transform: translateX(-50%)translateY(-8px);
  }
}

.page-module__nC61QG__avatarImg {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: 3px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 14px #0000001f;
}

.page-module__nC61QG__avatarLabel {
  color: #334155;
  text-align: center;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
}

.page-module__nC61QG__avatarDonation {
  color: #0f172a;
  font-size: 11px;
  font-weight: 700;
}

.page-module__nC61QG__card {
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  padding: 48px 44px 40px;
  animation: .5s cubic-bezier(.22, 1, .36, 1) forwards page-module__nC61QG__cardIn;
  position: relative;
  box-shadow: 0 20px 60px #00000014, 0 1px 3px #0000000a;
}

@keyframes page-module__nC61QG__cardIn {
  from {
    opacity: 0;
    transform: translateY(24px)scale(.98);
  }

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

.page-module__nC61QG__brandIcon {
  background: var(--color-red);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  display: flex;
  box-shadow: 0 10px 25px -5px #dc262666;
}

.page-module__nC61QG__brandIcon svg {
  color: #fff;
  width: 22px;
  height: 22px;
}

.page-module__nC61QG__title {
  color: #0f172a;
  text-align: center;
  letter-spacing: -.5px;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.page-module__nC61QG__subtitle {
  color: #64748b;
  text-align: center;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.6;
}

.page-module__nC61QG__error {
  color: #dc2626;
  text-align: center;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
}

.page-module__nC61QG__form {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.page-module__nC61QG__fieldRow {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.page-module__nC61QG__labelRow {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.page-module__nC61QG__label {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
}

.page-module__nC61QG__forgotLink {
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}

.page-module__nC61QG__forgotLink:hover {
  color: #b91c1c;
}

.page-module__nC61QG__input {
  color: #0f172a;
  box-sizing: border-box;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}

.page-module__nC61QG__input::placeholder {
  color: #94a3b8;
}

.page-module__nC61QG__input:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px #0f172a14;
}

.page-module__nC61QG__planGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  display: grid;
}

.page-module__nC61QG__planOption {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  text-align: center;
  background: #fffc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  padding: 24px 12px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: visible;
}

.page-module__nC61QG__planOption:hover {
  background: #fff;
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px #0000001a, 0 0 15px #dc26260d;
}

.page-module__nC61QG__planOptionActive {
  background: #fff;
  border-color: #dc2626;
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px #dc2626, 0 15px 35px -10px #dc262640, 0 0 20px #dc262626;
}

.page-module__nC61QG__planName {
  color: #475569;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: color .3s;
}

.page-module__nC61QG__planPrice {
  color: #0f172a;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  transition: color .3s;
}

.page-module__nC61QG__planVotes {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.page-module__nC61QG__planOptionActive .page-module__nC61QG__planName {
  color: #dc2626;
  font-weight: 800;
}

.page-module__nC61QG__planOptionActive .page-module__nC61QG__planPrice {
  color: #991b1b;
}

.page-module__nC61QG__planOptionActive .page-module__nC61QG__planVotes {
  color: #dc2626;
  font-weight: 600;
}

.page-module__nC61QG__planPopular {
  background: linear-gradient(#dc262608 0%, #fffc 100%);
  border-top: 3px solid #dc2626;
}

.page-module__nC61QG__planPopular:hover {
  box-shadow: 0 10px 30px -10px #dc262626, 0 0 15px #dc26261a;
}

.page-module__nC61QG__planPopular.page-module__nC61QG__planOptionActive {
  border-top-width: 3px;
  box-shadow: 0 0 0 1px #dc2626, 0 15px 40px -5px #dc26264d, 0 0 25px #dc262633;
}

.page-module__nC61QG__popularBadge {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 10;
  background: #dc2626;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px #dc26264d;
}

.page-module__nC61QG__submitBtn {
  background: linear-gradient(135deg, var(--color-red) 0%, #dc2626 50%, #b91c1c 100%);
  color: #fff;
  cursor: pointer;
  letter-spacing: .3px;
  border: none;
  border-radius: 50px;
  width: 100%;
  margin-top: 4px;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 10px 25px -5px #dc262666;
}

.page-module__nC61QG__submitBtn:hover:not(:disabled) {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px -5px #dc262699, 0 0 60px #dc262666;
}

.page-module__nC61QG__submitBtn:active:not(:disabled) {
  transform: scale(.99);
}

.page-module__nC61QG__submitBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.page-module__nC61QG__divider {
  align-items: center;
  gap: 14px;
  margin: 24px 0 20px;
  display: flex;
}

.page-module__nC61QG__dividerLine {
  background: #e2e8f0;
  flex: 1;
  height: 1px;
}

.page-module__nC61QG__dividerText {
  letter-spacing: 1.5px;
  color: #94a3b8;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
}

.page-module__nC61QG__socialRow {
  justify-content: center;
  gap: 14px;
  display: flex;
}

.page-module__nC61QG__socialBtn {
  cursor: pointer;
  color: #334155;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: all .15s;
  display: flex;
}

.page-module__nC61QG__socialBtn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000000f;
}

.page-module__nC61QG__footer {
  text-align: center;
  color: #64748b;
  margin-top: 24px;
  font-size: 13.5px;
}

.page-module__nC61QG__footerLink {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}

.page-module__nC61QG__footerLink:hover {
  color: #b91c1c;
}

@media (max-width: 800px) {
  .page-module__nC61QG__loginPage {
    padding: 100px 20px 40px;
  }

  .page-module__nC61QG__avatarRing {
    width: 500px;
    height: 500px;
  }

  .page-module__nC61QG__avatarImg {
    width: 42px;
    height: 42px;
  }

  .page-module__nC61QG__avatarLabel, .page-module__nC61QG__avatarDonation {
    font-size: 9px;
  }

  .page-module__nC61QG__planGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-module__nC61QG__loginPage {
    padding: 80px 16px 32px;
  }

  .page-module__nC61QG__avatarRing {
    display: none;
  }

  .page-module__nC61QG__card {
    border-radius: 20px;
    padding: 36px 24px 32px;
  }

  .page-module__nC61QG__planGrid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-module__nC61QG__planOption {
    padding: 12px 8px;
  }
}

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