/* [project]/app/register/register.module.css [app-client] (css) */
@keyframes register-module__B3synq__fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes register-module__B3synq__spinIcon {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.register-module__B3synq__page {
  min-height: 100vh;
  font-family: var(--font-body), Inter, sans-serif;
  background: #f0f2f5;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.register-module__B3synq__card {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  padding: 48px 44px 40px;
  animation: .45s both register-module__B3synq__fadeUp;
  box-shadow: 0 1px 3px #0000000f, 0 8px 32px #00000017;
}

.register-module__B3synq__cardHeader {
  text-align: center;
  margin-bottom: 36px;
}

.register-module__B3synq__cardTitle {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: -.03em;
  color: #0f172a;
  margin-bottom: 6px;
  font-size: 1.75rem;
  font-weight: 800;
}

.register-module__B3synq__cardSubtitle {
  color: #64748b;
  font-size: .9rem;
}

.register-module__B3synq__errorBanner {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  font-size: .85rem;
}

.register-module__B3synq__fieldGroup {
  margin-bottom: 18px;
}

.register-module__B3synq__label {
  color: #475569;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  margin-bottom: 7px;
  display: block;
}

.register-module__B3synq__input {
  color: #0f172a;
  width: 100%;
  font-size: .93rem;
  font-family: var(--font-body), Inter, sans-serif;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.register-module__B3synq__input::placeholder {
  color: #cbd5e1;
}

.register-module__B3synq__input:focus {
  border-color: #3b5bdb;
  box-shadow: 0 0 0 3px #3b5bdb1a;
}

.register-module__B3synq__input:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  background: #f8fafc;
}

.register-module__B3synq__inputError {
  border-color: #f87171 !important;
}

.register-module__B3synq__inputError:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px #ef44441a !important;
}

.register-module__B3synq__fieldError {
  color: #ef4444;
  margin-top: 5px;
  font-size: .78rem;
}

.register-module__B3synq__industryLabel {
  color: #475569;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  margin-bottom: 8px;
  display: block;
}

.register-module__B3synq__industryGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 6px;
  display: grid;
}

.register-module__B3synq__industryCard {
  cursor: pointer;
  text-align: left;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 10px 14px;
  transition: border-color .15s, background .15s, box-shadow .15s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.register-module__B3synq__industryCard:hover:not(:disabled) {
  background: #f0f6ff;
  border-color: #93c5fd;
}

.register-module__B3synq__industryCard:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.register-module__B3synq__industryCardActive {
  box-shadow: 0 0 0 1px #3b5bdb;
  background: #eff3ff !important;
  border-color: #3b5bdb !important;
}

.register-module__B3synq__industryImg {
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  width: 100%;
  height: 55px;
  margin-bottom: 2px;
}

.register-module__B3synq__industryName {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  color: #0f172a;
  font-size: .92rem;
  font-weight: 800;
}

.register-module__B3synq__industryCheck {
  background: #3b5bdb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

.register-module__B3synq__industryCheck svg {
  width: 9px;
  height: 9px;
}

.register-module__B3synq__termsRow {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.register-module__B3synq__termsCheckbox {
  accent-color: #3b5bdb;
  cursor: pointer;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.register-module__B3synq__termsText {
  color: #64748b;
  font-size: .83rem;
  line-height: 1.55;
}

.register-module__B3synq__termsLink {
  color: #3b5bdb;
  text-decoration: none;
}

.register-module__B3synq__termsLink:hover {
  text-decoration: underline;
}

.register-module__B3synq__btnSubmit {
  color: #fff;
  width: 100%;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  background: #3b5bdb;
  border: none;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 13px;
  font-size: .88rem;
  font-weight: 700;
  transition: background .15s, box-shadow .15s, transform .1s;
}

.register-module__B3synq__btnSubmit:hover:not(:disabled) {
  background: #2f4ec4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px #3b5bdb4d;
}

.register-module__B3synq__btnSubmit:active:not(:disabled) {
  transform: translateY(0);
}

.register-module__B3synq__btnSubmit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.register-module__B3synq__btnSpinner {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.register-module__B3synq__btnSpinner svg {
  width: 16px;
  height: 16px;
  animation: .9s linear infinite register-module__B3synq__spinIcon;
}

.register-module__B3synq__divider {
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  display: flex;
}

.register-module__B3synq__dividerLine {
  background: #e2e8f0;
  flex: 1;
  height: 1px;
}

.register-module__B3synq__dividerText {
  color: #94a3b8;
  white-space: nowrap;
  font-size: .78rem;
}

.register-module__B3synq__btnLogin {
  color: #475569;
  width: 100%;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  display: flex;
}

.register-module__B3synq__btnLogin:hover {
  color: #1e293b;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.register-module__B3synq__backLink {
  text-align: center;
  color: #94a3b8;
  margin-top: 20px;
  font-size: .82rem;
  text-decoration: none;
  transition: color .15s;
  display: block;
}

.register-module__B3synq__backLink:hover {
  color: #475569;
}

@media (max-width: 600px) {
  .register-module__B3synq__card {
    border-radius: 12px;
    padding: 32px 20px 28px;
  }

  .register-module__B3synq__industryGrid {
    grid-template-columns: 1fr;
  }
}

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