/* [project]/src/app/login/login.module.css [app-client] (css) */
.login-module__WEZH7G__layout {
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -.01em;
  height: 100vh;
  min-height: 600px;
  color: var(--fp-fg);
  -webkit-font-smoothing: antialiased;
  background: #f7f5f0;
  font-family: Pretendard Variable, Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  display: flex;
  overflow: hidden;
}

.login-module__WEZH7G__panel {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 48px;
  transition: background .2s, color .2s;
  display: flex;
  overflow: hidden;
}

.login-module__WEZH7G__brand {
  letter-spacing: -.02em;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.login-module__WEZH7G__brandMark {
  background: var(--fp-fg);
  width: 26px;
  height: 26px;
  color: var(--fp-bg);
  border-radius: 5px;
  flex-shrink: 0;
  place-items: center;
  font-family: JetBrains Mono, ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, color .2s;
  display: grid;
}

.login-module__WEZH7G__panelMiddle {
  flex-direction: column;
  gap: 28px;
  display: flex;
}

.login-module__WEZH7G__panelHeadline {
  letter-spacing: -.03em;
  margin: 0;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
}

.login-module__WEZH7G__mosaic {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  display: grid;
}

.login-module__WEZH7G__mosaicCell {
  aspect-ratio: 1;
  letter-spacing: -.01em;
  cursor: default;
  border-radius: 12px;
  align-items: flex-end;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-module__WEZH7G__mosaicCell:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px #0000001f;
}

.login-module__WEZH7G__mosaicIcon {
  opacity: .5;
  pointer-events: none;
  font-size: 14px;
  position: absolute;
  top: 12px;
  right: 12px;
}

.login-module__WEZH7G__panelFooter {
  opacity: .6;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.login-module__WEZH7G__panelFooter a {
  color: currentColor;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  display: flex;
}

.login-module__WEZH7G__panelFooter a:hover {
  opacity: .75;
}

.login-module__WEZH7G__formSide {
  background: var(--fp-bg);
  flex-direction: column;
  flex-shrink: 0;
  width: 480px;
  padding: 40px 56px;
  transition: background .2s;
  display: flex;
}

.login-module__WEZH7G__formTop {
  color: var(--fp-muted);
  text-align: right;
  font-size: 15px;
}

.login-module__WEZH7G__formTop a {
  color: var(--fp-fg);
  font-weight: 500;
  text-decoration: none;
}

.login-module__WEZH7G__formTop a:hover {
  text-decoration: underline;
}

.login-module__WEZH7G__formBody {
  flex-direction: column;
  flex: 1;
  gap: 22px;
  margin-top: 56px;
  display: flex;
}

.login-module__WEZH7G__formHeading h2 {
  letter-spacing: -.03em;
  color: var(--fp-fg);
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.login-module__WEZH7G__formHeading p {
  color: var(--fp-muted);
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.login-module__WEZH7G__form {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.login-module__WEZH7G__tabs {
  background: var(--fp-subtle);
  border-radius: calc(var(--fp-radius) - 2px);
  width: 100%;
  padding: 3px;
  font-size: 15px;
  display: inline-flex;
  position: relative;
}

.login-module__WEZH7G__tab {
  appearance: none;
  border-radius: calc(var(--fp-radius) - 4px);
  cursor: pointer;
  color: var(--fp-muted);
  font: inherit;
  letter-spacing: -.01em;
  z-index: 1;
  background: none;
  border: 0;
  flex: 1;
  padding: 7px 16px;
  font-family: inherit;
  font-weight: 500;
  transition: color .15s;
  position: relative;
}

.login-module__WEZH7G__tab.login-module__WEZH7G__active {
  color: var(--fp-fg);
}

.login-module__WEZH7G__tabThumb {
  border-radius: calc(var(--fp-radius) - 4px);
  background: var(--fp-bg);
  pointer-events: none;
  transition: left .22s cubic-bezier(.3, .7, .4, 1), width .22s;
  position: absolute;
  top: 3px;
  bottom: 3px;
  box-shadow: 0 1px 2px #0000000f, 0 0 0 .5px #0000000f;
}

.login-module__WEZH7G__fieldGroup {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.login-module__WEZH7G__fieldLabel {
  color: var(--fp-fg);
  letter-spacing: -.01em;
  font-size: 14px;
  font-weight: 500;
}

.login-module__WEZH7G__inputWrap {
  position: relative;
}

.login-module__WEZH7G__input {
  appearance: none;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  background: var(--fp-bg);
  width: 100%;
  height: 42px;
  color: var(--fp-fg);
  font: inherit;
  letter-spacing: -.01em;
  outline: none;
  padding: 0 13px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}

.login-module__WEZH7G__input::placeholder {
  color: var(--fp-muted);
  opacity: .7;
}

.login-module__WEZH7G__input:focus {
  border-color: var(--fp-fg);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fp-fg) 8%, transparent);
}

.login-module__WEZH7G__inputPwd {
  padding-right: 42px;
}

.login-module__WEZH7G__eyeBtn {
  cursor: pointer;
  color: var(--fp-muted);
  background: none;
  border: 0;
  border-radius: 6px;
  place-items: center;
  padding: 6px;
  line-height: 0;
  display: grid;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.login-module__WEZH7G__eyeBtn:hover {
  color: var(--fp-fg);
}

.login-module__WEZH7G__row {
  justify-content: space-between;
  align-items: center;
  margin-top: -2px;
  display: flex;
}

.login-module__WEZH7G__checkboxLabel {
  color: var(--fp-muted);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: flex;
}

.login-module__WEZH7G__checkboxLabel input[type="checkbox"] {
  appearance: none;
  border: 1px solid var(--fp-border-strong);
  background: var(--fp-bg);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  place-items: center;
  width: 15px;
  height: 15px;
  display: grid;
}

.login-module__WEZH7G__checkboxLabel input[type="checkbox"]:checked {
  background: var(--fp-fg);
  border-color: var(--fp-fg);
}

.login-module__WEZH7G__checkboxLabel input[type="checkbox"]:checked:after {
  content: "";
  border-left: 1.5px solid var(--fp-bg);
  border-bottom: 1.5px solid var(--fp-bg);
  width: 7px;
  height: 4px;
  transform: rotate(-45deg)translate(1px, -1px);
}

.login-module__WEZH7G__linkMuted {
  color: var(--fp-muted);
  font-size: 14px;
  text-decoration: none;
}

.login-module__WEZH7G__linkMuted:hover {
  text-decoration: underline;
}

.login-module__WEZH7G__btnPrimary {
  appearance: none;
  border-radius: var(--fp-radius);
  background: var(--fp-fg);
  width: 100%;
  height: 52px;
  color: var(--fp-bg);
  font: inherit;
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-family: inherit;
  line-height: 1.15;
  transition: opacity .15s, transform 50ms;
  display: flex;
}

.login-module__WEZH7G__btnPrimary:hover {
  opacity: .88;
}

.login-module__WEZH7G__btnPrimary:active {
  transform: scale(.99);
}

.login-module__WEZH7G__btnLabel {
  flex-direction: column;
  align-items: center;
  gap: 1px;
  display: flex;
}

.login-module__WEZH7G__btnRole {
  opacity: .65;
  letter-spacing: .02em;
  font-size: 12px;
  font-weight: 500;
}

.login-module__WEZH7G__btnText {
  font-size: 16px;
  font-weight: 600;
}

.login-module__WEZH7G__btnArrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  display: inline-flex;
}

.login-module__WEZH7G__divider {
  color: var(--fp-muted);
  letter-spacing: .02em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.login-module__WEZH7G__divider:before, .login-module__WEZH7G__divider:after {
  content: "";
  background: var(--fp-border);
  flex: 1;
  height: 1px;
}

.login-module__WEZH7G__socialGrid {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  display: grid;
}

.login-module__WEZH7G__socialBtn {
  appearance: none;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  background: var(--fp-bg);
  height: 38px;
  color: var(--fp-fg);
  cursor: pointer;
  place-items: center;
  padding: 0;
  transition: background .15s;
  display: grid;
}

.login-module__WEZH7G__socialBtn:hover {
  background: var(--fp-subtle);
}

.login-module__WEZH7G__socialBtn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.login-module__WEZH7G__legal {
  color: var(--fp-muted);
  letter-spacing: -.005em;
  margin-top: auto;
  font-size: 13px;
  line-height: 1.55;
}

.login-module__WEZH7G__legal a {
  color: var(--fp-fg);
  text-underline-offset: 2px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--fp-border-strong);
  text-decoration-color: var(--fp-border-strong);
}

.login-module__WEZH7G__tweaksToggle {
  z-index: 100;
  background: var(--fp-fg);
  width: 36px;
  height: 36px;
  color: var(--fp-bg);
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  place-items: center;
  font-family: inherit;
  font-size: 16px;
  transition: opacity .15s;
  display: grid;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 2px 8px #0003;
}

.login-module__WEZH7G__tweaksToggle:hover {
  opacity: .8;
}

.login-module__WEZH7G__tweaksPanel {
  z-index: 99;
  background: var(--fp-bg);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  flex-direction: column;
  gap: 14px;
  width: 220px;
  padding: 16px;
  transition: background .2s;
  display: flex;
  position: fixed;
  bottom: 64px;
  right: 20px;
  box-shadow: 0 8px 24px #0000001f;
}

.login-module__WEZH7G__tweakSection {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fp-muted);
  margin-bottom: -4px;
  font-size: 10.5px;
  font-weight: 600;
}

.login-module__WEZH7G__tweakRow {
  color: var(--fp-fg);
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  display: flex;
}

.login-module__WEZH7G__tweakRow input[type="color"] {
  appearance: none;
  border: 1px solid var(--fp-border);
  cursor: pointer;
  background: none;
  border-radius: 4px;
  width: 28px;
  height: 22px;
  padding: 1px;
}

.login-module__WEZH7G__tweakRow input[type="range"] {
  width: 90px;
  accent-color: var(--fp-fg);
}

.login-module__WEZH7G__toggleSwitch {
  flex-shrink: 0;
  width: 34px;
  height: 20px;
  position: relative;
}

.login-module__WEZH7G__toggleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.login-module__WEZH7G__toggleTrack {
  background: var(--fp-border-strong);
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s;
  position: absolute;
  inset: 0;
}

.login-module__WEZH7G__toggleSwitch input:checked + .login-module__WEZH7G__toggleTrack {
  background: var(--fp-fg);
}

.login-module__WEZH7G__toggleTrack:after {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: transform .2s;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 3px #0003;
}

.login-module__WEZH7G__toggleSwitch input:checked + .login-module__WEZH7G__toggleTrack:after {
  transform: translateX(14px);
}

@media (max-width: 780px) {
  .login-module__WEZH7G__panel {
    display: none;
  }

  .login-module__WEZH7G__formSide {
    width: 100%;
    padding: 32px 24px;
  }
}

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