body.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 20px;
}

.login-card {
  width: min(380px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.login-icon {
  width: 44px;
  height: 44px;
  display: block;
}

.app-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.app-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  text-align: center;
}

.login-form {
  width: 100%;
}

.input-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 14px;
}

.pw-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 44px 14px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  letter-spacing: 0.5px;
}

.pw-input::placeholder {
  color: var(--muted);
}

.pw-input:focus {
  border-color: var(--terra);
}

.eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-enter {
  width: 100%;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}

.btn-enter:active {
  filter: brightness(0.92);
}

.error-msg {
  min-height: 18px;
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--terra);
}
