* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

.login-page {
  width: 100%;
  height: 100vh;
  display: flex;
}

.left-section,
.right-section {
  width: 50%;
  height: 100vh;
}

.left-section {
  background: #F3FFF5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #65A85A;
  padding-bottom: 20px;
}

.logo-image {
  width: min(360px, 42vw, 42vh);
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.left-section p {
  width: 300px;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: #111111;
  text-align: center;
}

.right-section {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form {
  width: min(484px, 72%);
  transform: translateY(-10px);
}

.login-form h2 {
  margin: 0 0 34px 0;
  font-size: clamp(38px, 3.4vw, 48px);
  font-weight: 600;
  color: #111111;
  text-align: left;
}

.login-form label {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  color: #111111;
}

.login-form input {
  width: 100%;
  height: 56px;
  border: 1px solid #CACACA;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 18px;
  outline: none;
}

.login-form input:focus {
  border-color: #65A85A;
}

.login-btn {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 10px;
  background: #65A85A;
  color: white;
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 500;
  cursor: pointer;
}

.divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  font-size: 15px;
  color: #BCBCBC;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #BCBCBC;
}

.google-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.google-btn {
  width: 100%;
  height: 56px;
  border: 1px solid #CACACA;
  border-radius: 8px;
  background: #FFFFFF;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.google-btn:hover {
  background: #F8F8F8;
}

.google-logo {
  width: 20px;
  height: 20px;
}

.signup-link {
  width: 100%;
  text-align: center;
  margin-top: 14px;
}

.signup-link a {
  font-size: 15px;
  color: #B5B5B5;
  text-decoration: none;
}

.signup-link a:hover {
  color: #65A85A;
}

/* 비밀번호 보기 */

.password-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
}

.password-wrapper input {
  width: 100%;
  height: 56px;
  padding-right: 50px;
  margin-bottom: 0;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;

  transform: translateY(-50%);

  width: 24px;
  height: 24px;

  border: none;
  background: transparent;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  z-index: 100;
}

.toggle-password svg {
  width: 20px;
  height: 20px;
}

.error-message {
  color: #ff4d4f;
  font-size: 14px;
  margin-bottom: 12px;
}