.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-top: 100px;
  margin-bottom: 100px;
}

.login-wrapper {
  display: flex;
  width: 1100px;
  height: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

/* Left Side */

.login-left {
  flex: 1;
  border: 10px solid white;
  border-right: none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: transparent;
}

/* Right Side */

.login-right {
  flex: 1;
  background-color: white;
  padding: 60px 40px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Right Side */

.register-left {
  flex: 1;
  background-color: white;
  padding: 60px 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.login-form-structured {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Mulish', sans-serif;
}

.login-logo {
  width: 140px;
  height: auto;
  margin-bottom: 30px;
}

.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 30px;
  color: #0b0818;
}

.login-form-structured input {
  width: 348px;
  /* Match the button */
  margin-bottom: 20px;
  padding: 0 20px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background-clip: border-box;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

.login-submit {
  border: none;
  background-color: #0b0818;
  color: white;
  border-radius: 10px;
  padding: 11px 0px;
  width: 348px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.form-small {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.form-divider {
  font-size: 14px;
  color: #999;
  margin: 10px 0;
}

.register-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #f1f1f1;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  width: 348px;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.register-btn:hover {
  background-color: #e1e1e1;
}

.google-btn {
  background-color: #dc4e41;
  color: white;
  font-size: 16px;
  font-weight: 500;
  width: 348px;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.google-btn:hover {
  background-color: #b63f34;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.register-left-hollow {
  flex: 1;
  border: 10px solid white;
  border-left: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: transparent;
}

/* Mobile responsive - dynamic widths */
@media only screen and (max-width: 767px) {
  .login-form-structured input,
  .login-submit,
  .register-btn,
  .google-btn {
    width: 100%;
    max-width: 348px;
  }
}
