/* General Form Styling - Matching Login Form */
.lp-registration-form-wrapper {
  max-width: 450px ; /* Adjusted to match typical login form width */
  margin: 50px auto;
  padding: 30px; /* Reduced padding slightly */
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 8px;
  text-align: left;
}

.lp-registration-form-wrapper h2 {
  font-size: 24px; /* Slightly smaller to match image */
  color: #333;
  margin-bottom: 30px; /* Increased space below heading */
  text-align: center;
  font-weight: 600;
}

.lp-registration-form-wrapper p {
  margin-bottom: 18px; /* Spacing between fields */
}

/* Remove default label from input, use placeholder */
.lp-registration-form-wrapper p:not(.lp-checkbox-field) label {
  display: none; /* Hide implicit labels from form-wrapper styles */
}

/* Input Field Styling */
.lp-registration-form-wrapper input[type="text"],
.lp-registration-form-wrapper input[type="email"],
.lp-registration-form-wrapper input[type="tel"],
.lp-registration-form-wrapper input[type="password"],
.lp-registration-form-wrapper input[type="url"],
.lp-registration-form-wrapper input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 0; /* Managed by parent <p> tag */
  border: 1px solid #ddd;
  border-radius: 4px; /* Slightly less rounded */
  box-sizing: border-box;
  background-color: #fff; /* White background for inputs */
  color: #333;
  font-size: 15px;
}
.lp-registration-form-wrapper input::placeholder {
  color: #999; /* Grey placeholder text */
  opacity: 1; /* Firefox fix */
}
.lp-registration-form-wrapper input[type="text"]:focus,
.lp-registration-form-wrapper input[type="email"]:focus,
.lp-registration-form-wrapper input[type="tel"]:focus,
.lp-registration-form-wrapper input[type="password"]:focus,
.lp-registration-form-wrapper input[type="url"]:focus,
.lp-registration-form-wrapper input[type="number"]:focus {
  border-color: #3f5f6e; /* Updated to match button color */
  box-shadow: 0 0 0 1px #3f5f6e; /* Updated to match button color */
  outline: none;
}

/* Submit Button Styling */
.lp-registration-form-wrapper .lp-submit-button-wrap {
  text-align: center; /* Center the button */
  margin-top: 25px; /* Space above button */
  margin-bottom: 15px; /* Space below button */
}

.lp-registration-form-wrapper input[type="submit"] {
  background-color: #3f5f6e; /* Dark teal color */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px; /* Pill shape button */
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%; /* Full width button */
  transition: background-color 0.2s ease;
}
.lp-registration-form-wrapper input[type="submit"]:hover {
  background-color: #334d58; /* Slightly darker on hover */
}

.lp-registration-form-wrapper .required {
  color: #d9534f;
  font-size: 0.9em;
  margin-left: 5px;
}

/* Success and Error Message Styling */
.lp-success-message {
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}
.lp-error-message {
  background-color: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.lp-error-message p {
  margin-bottom: 5px;
  text-align: center;
}
.lp-error-message p:last-child {
  margin-bottom: 0;
}

/* Checkbox Field Styling (Inline - Adjusted) */
.lp-checkbox-field {
  display: flex; /* Use flexbox for inline alignment */
  align-items: center; /* Vertically center items */
  margin-bottom: 10px; /* Spacing between checkbox rows */
  margin-top: 10px; /* Add some space above the first checkbox */
  font-size: 14px; /* Consistent font size with footer links */
}

.lp-checkbox-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px; /* Slightly reduced space */
  margin-bottom: 0;
  min-width: 16px;
  min-height: 16px;
  vertical-align: middle;
  flex-shrink: 0; /* Prevent checkbox from shrinking */
  cursor: pointer; /* Indicate it's clickable */
}

.lp-checkbox-field label {
  display: inline; /* Changed from flex */
  margin-bottom: 0;
  font-weight: normal;
  color: #555;
  line-height: 1.4; /* Ensure text lines up well */
  cursor: pointer; /* Indicate it's clickable */
}

.lp-checkbox-field label a {
  color: #3f5f6e; /* Updated to match button color */
  text-decoration: underline;
  font-weight: 500;
}
.lp-checkbox-field label a:hover {
  color: #334d58;
}

/* Form Footer Links */
.lp-form-footer-links {
  text-align: center;
  margin-top: 20px; /* More space below submit button */
  font-size: 14px;
}
.lp-form-footer-links a {
  color: #5cb85c; /* Green for "Lost your password?" */
  text-decoration: none;
  margin: 0 5px;
}
.lp-form-footer-links a:hover {
  text-decoration: underline;
  color: #4cae4c;
}

/* START: Updated styles for Pricing Options */
.lp-pricing-options-wrapper {
  margin-top: 35px;
  margin-bottom: 25px;
}

.lp-pricing-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 8px;
  text-align: left;
  font-weight: 600;
}

.lp-pricing-description {
  font-size: 15px;
  color: #555;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
/* END: Updated styles for Pricing Options */