
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-section {
  display: flex;
  flex: 1;
  min-height: 0;
}

.left-section,
.right-section {
  flex: 1;
}

.left-section {
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.brand {
  color: #c59a3a;
  letter-spacing: 4px;
  font-size: 24px;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(197, 154, 58, 0.5));
}

.tagline {
  text-align: center;
}

.tagline h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.tagline p {
  font-size: 14px;
  color: #aaa;
}

footer {
  display: flex;
  gap: 20px;
  font-size: 14px;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
}

footer a {
  color: #c59a3a;
  text-decoration: none;
}

.right-section {
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  width: 100%;
  max-width: 400px;
}

.form-container h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 20px;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  font-size: 14px;
}

form input::placeholder {
  color: #777;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #c59a3a;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #e0b84a;
}

.signin-text {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.signin-text a {
  color: #c59a3a;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 992px) {
  .left-section,
  .right-section {
    padding: 30px 20px;
  }

  .tagline h2 {
    font-size: 24px;
  }

  .product-image img {
    max-width: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
  }

  .left-section {
    padding: 30px 20px;
    gap: 20px;
  }

  .right-section {
    padding: 30px 20px;
  }

  .brand {
    font-size: 22px;
  }

  .tagline h2 {
    font-size: 22px;
  }

  .tagline p {
    font-size: 13px;
  }

  .product-image img {
    max-width: 180px;
  }

  .form-container {
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .left-section,
  .right-section {
    padding: 20px 15px;
  }

  .brand {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .tagline h2 {
    font-size: 20px;
  }

  form input,
  form button {
    padding: 10px;
    font-size: 13px;
  }

  footer {
    gap: 12px;
    font-size: 12px;
  }
}

/* ── Password Toggle ── */
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 42px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.eye-icon {
  position: absolute;
  right: 12px;
  top: calc(50% - 7px);
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 0.9rem;
  user-select: none;
}

.eye-icon:hover {
  color: #c59a3a;
}
