* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #f6c1cc, #fbe3d6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-container {
  width: 900px;
  height: 520px;
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* LEFT PANEL */
.signup-left {
  width: 45%;
  background: #fff;
  color: #111;
  padding: 40px;
}

.signup-left h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.tagline {
  color: #444;
  margin-bottom: 25px;
}

.signup-left ul {
  list-style: none;
  margin-bottom: 25px;
}

.signup-left li {
  margin-bottom: 10px;
}

.note {
  font-size: 13px;
  opacity: 0.9;
}

/* RIGHT PANEL */
.signup-right {
  width: 55%;
  background: linear-gradient(160deg, #000000, #1a1a1a);
  color: #fff;
  padding: 50px;
}

.signup-right h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.subtext {
  color: #d0d0d0;
  margin-bottom: 25px;
}

.signup-right input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.password-field {
  position: relative;
  margin-bottom: 14px;
}

.password-field input {
  margin-bottom: 0;
  padding-right: 50px;
}

.password-field input:focus {
  outline: none;
  border-color: #ff7fb0;
  box-shadow: 0 0 0 3px rgba(255, 127, 176, 0.18);
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.toggle-password-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.toggle-password:hover {
  color: #6b7280;
}

.toggle-password:focus-visible {
  outline: 2px solid rgba(255, 127, 176, 0.55);
  outline-offset: 2px;
}

.login-right .toggle-password,
.signup-right .toggle-password,
.reset-panel .toggle-password {
  color: #9ca3af;
}

.login-right .toggle-password:hover,
.signup-right .toggle-password:hover,
.reset-panel .toggle-password:hover {
  color: #d1d5db;
}

.password-help {
  margin-top: -2px;
  margin-bottom: 16px;
  color: #cfcfcf;
  font-size: 12px;
  line-height: 1.4;
}

.signup-right form > button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff4f87, #ff7fb0);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

.signup-right form > button[type="submit"]:hover {
  opacity: 0.9;
}

.login-link {
  margin-top: 15px;
  font-size: 14px;
  color: #d0d0d0;
}

.login-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.login-container {
  width: 900px;
  min-height: 520px;
  max-height: calc(100vh - 32px);
  height: auto;
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.login-left {
  width: 45%;
  background: #fff;
  color: #111;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left p {
  color: #444;
  margin-top: 20px;
  line-height: 1.5;
}

.login-right {
  width: 55%;
  background: linear-gradient(160deg, #000000, #1a1a1a);
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.login-right h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.login-subtext {
  color: #d0d0d0;
  margin-bottom: 25px;
}

.login-right input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.primary-action {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff4f87, #ff7fb0);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

.primary-action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.secondary-link {
  width: 100%;
  margin-top: 10px;
  background: transparent;
  color: #ffb7cf;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
}

.reset-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.reset-submit {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.reset-panel h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.reset-help {
  margin-bottom: 12px;
  color: #d0d0d0;
  font-size: 13px;
  line-height: 1.4;
}

.hidden {
  display: none;
}

.login-right .primary-action {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff4f87, #ff7fb0);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

.signup-link {
  margin-top: 15px;
  font-size: 14px;
  color: #d0d0d0;
}

.signup-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.booking-container {
  width: 900px;
  height: 500px;
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.booking-left {
  width: 45%;
  background: #fff;
  color: #111;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-left p {
  color: #444;
  margin-top: 20px;
  line-height: 1.5;
}

.booking-right {
  width: 55%;
  background: linear-gradient(160deg, #000000, #1a1a1a);
  color: #fff;
  padding: 22px 34px;
  overflow-y: auto;
}

.booking-right h1 {
  font-size: 22px;
  margin-bottom: 6px;
}

.booking-subtext {
  color: #d0d0d0;
  margin-bottom: 12px;
}

.booking-right label {
  display: block;
  margin-bottom: 4px;
  color: #e8e8e8;
  font-size: 13px;
}

.booking-right input {
  width: 100%;
  padding: 9px;
  margin-bottom: 9px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.booking-right button {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #ff4f87, #ff7fb0);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

#responseMessage {
  margin-top: 10px;
  font-size: 13px;
  color: #d0d0d0;
}

#calendar input[type="time"] {
  pointer-events: auto !important;
  opacity: 1 !important;
  background-color: #fff !important;
}

.subscription-container {
  padding: 20px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 5px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 20px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.plan-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.plan-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-card ul li {
  padding: 6px 0;
  font-size: 14px;
}

.upgrade-btn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

.upgrade-btn:hover {
  opacity: 0.9;
}

.current-btn {
  background: #ccc;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
}

.recommended {
  border: 2px solid #4f46e5;
}

/* ===== APP LOGO ===== */

.app-logo{
    width: 140px;
    max-width: 100%;
    display: block;
}

.logo-link{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
}

/* Mobile */
@media(max-width:768px){
  .signup-container,
  .login-container,
  .booking-container{
    width: 95%;
    height: auto;
    flex-direction: column;
  }

  .signup-left,
  .signup-right,
  .login-left,
  .login-right,
  .booking-left,
  .booking-right{
    width: 100%;
    padding: 28px;
  }

  .login-right {
    max-height: 70vh;
    overflow-y: auto;
  }

    .app-logo{
        width:110px;
    }
}