/* signup.css */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Layout */
.signup-layout {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Left Form Panel */
.signup-left {
  width: 50%;
  padding: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-content {
  width: 100%;
  max-width: 400px;
}

.signup-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111111;
}

.signup-content .subtext {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 30px;
}

.kettle-accent {
  color: #f97316;
  font-weight: bold;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signup-form label {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 5px;
}

.signup-form input[type="email"],
.signup-form input[type="password"],
.signup-form input[type="text"] {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
}

.password-group {
  position: relative;
}

.toggle-visibility {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-visibility img {
  width: 20px;
  height: 20px;
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.checkbox-container input {
  transform: scale(1.1);
}

.checkbox-container a {
  color: #333;
  text-decoration: underline;
}

/* Button */
.submit-btn {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background-color: #e25e00;
}

/* Right Illustration */
.signup-right {
  width: 50%;
  background: linear-gradient(to bottom right, #fff7f1, #ffe6cc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* remove padding to let image fill more space */
}


.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Or use 'cover' if you want it to crop and fill */
  max-width: none;
}

/* Footer Note */
.footer-note {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 10px;
}

.footer-note a {
  color: #f97316;
  text-decoration: none;
}

/* Message */
.message {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Home button after signup */
.home-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #f97316;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .signup-layout {
    flex-direction: column;
  }

  .signup-left,
  .signup-right {
    width: 100%;
    padding: 40px 20px;
  }

  .signup-right {
    order: -1;
  }

  .mockup-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
  }
}
