.content.native-login {
  width: 100%;
  max-width: 428px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.native-login-form {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10rem auto auto auto;
}
.border-input{color: var(--color-main)}

.native-login-form .text{font-size: 24px; font-weight: bold; line-height: 30px}
.native-login-form span{display: block; font-size: 14px; margin-top: -8px; margin-bottom: 18px; color: var(--color-gray-dark)}
.form-group {
  position: relative;
}
.c-kfnGxn {
  position: absolute;
  right: 16px;
  bottom: 10px;
}

.form-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 14px 0 8px 0;
}
.form-link {
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
}

.kakao {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 205, 0, 0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}
.kakao:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(255, 205, 0, 0.25);
}

.kakao-login {
  width: 100%;
  background: #FEE500;
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-sizing: border-box;
}

.kakao-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(254, 229, 0, 0.3);
}

/* 반응형 */
@media (max-width: 428px) {
  .native-login-form {
    margin: 3.8rem auto auto auto;
  }
}