* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Prompt", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fff8d6;
}

.container {
  display: flex;
  width: 80%;
  height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Left Section */
.left-section {
  flex: 1;
  background: #fff0ad;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-section h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.left-section h2 {
  font-size: 1.5rem;
  margin: 25px 0 5px;
}

.left-section p,
ul {
  font-size: 1rem;
  line-height: 1.6;
}

.left-section ul {
  padding-left: 20px;
}

.left-section h3 {
  font-size: 1.2rem;
  margin: 25px 0 5px;
  font-weight: 600;
}

.supported-websites {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.website-item {
  display: flex;
  align-items: center;
}

.website-logo {
  height: 25px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.website-logo:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Right Section */
.right-section {
  flex: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffe985;
}

.right-section h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.right-section p {
  font-size: 1rem;
  margin-bottom: 5px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.form-inline-container {
  display: flex;
  gap: 10px;
}

#guest_product_url {
  flex: 2;
}

#guest_price {
  flex: 1;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"] {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input::placeholder {
  font-family: "Sour Gummy", sans-serif;
  font-size: 0.95rem;
}

.password-container {
  position: relative;
}

.password-container input[type="password"] {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.login-buttons {
  display: flex;
  gap: 12px;
}

/* Base button styles (shared by <button> and <a>) */
.btn {
  flex: 1;
  font-family: "Poppins", sans-serif;
  padding: 10px 15px;
  background-color: #ffdd47;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background-color: #ffd61f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #000000;
}

.google-login {
  gap: 8px;
}

.google-login img {
  height: 25px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #4756ff;
}

/* Ensure no vertical scroll */
html,
body {
  overflow: hidden;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-container img {
  border: 1px solid #ccc;
  padding: 5px;
  height: 45px;
}

#price-info {
  font-size: 0.85rem;
  margin: -10px 0 0;
  color: #cc0000;
}
