#custom-login-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.login-header {
  text-align: center;
}

.login-footer {
  text-align: center;
  margin-top: 15px;
}

#custom-login-form #password {
  position: relative;
}

#custom-login-form button {
  text-align: center;
}

#custom-login-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#custom-login-form button {
  background: #28a745;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#custom-login-form button:hover {
  background: #218838;
}

.toggle-password {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: 3px;
}

.max-w-100 {
  width: 100% !important;
  max-width: 100% !important;
}

.max-w-100 label {
  display: block;
}

.max-w-100 input {
  width: 50% !important;
}

#custom-signup-form {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 50px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: rgba(52, 75, 91, 0.29) 0px 30px 70px -10px;
}

#custom-signup-form input,
#custom-signup-form select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#custom-signup-form button {
  background: #28a745;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#custom-signup-form button:hover {
  background: #218838;
}

.form-header {
  text-align: center;
}

#signup-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

#signup-form > div {
  width: calc(50% - 10px);
}

#state {
  max-height: 400px;
  overflow-y: auto !important;
}

#signup-button {
  display: block !important;
}

.hidden {
  display: none;
}

#dashboard-wrapper {
  margin-top: 50px;
  width: 100%;
  margin-bottom: 50px;
  min-height: 100vh;
}

#verify-btn {
  background-color: #5cb430;
}

#resend-btn {
  color: #5cb430;
}

/* Progress Bar */
.progress {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.progress .step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ddd;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress .line {
  width: 50px;
  height: 2px;
  background-color: #ddd;
}

.progress .step.active {
  background-color: #5cb430;
}

.progress .line.active {
  background-color: #5cb430;
}

/* Form */
/* .step-content {
    display: none;
} */

.step-content.active {
  display: block;
}

.form-buttons {
  margin-top: 20px;
}

.form-buttons button {
  padding: 10px 20px;
  background-color: #5cb430;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  margin-right: 10px;
}

.form-buttons button:hover {
  background-color: #4a9e29;
}

#form-wrapper {
  margin: auto;
  max-width: 768px;
}

.two-col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}

.two-col > .form-group {
  width: 50%;
}

#multi-step-form .primary-button {
  background-color: #4a9e29;
}

#multi-step-form .form-group {
  margin-bottom: 15px;
}

/** Submitted Properties **/

#submissions-wrapper {
  max-width: 768px;
  margin: auto;
}

span.completed {
  background-color: #4a9e29;
  color: black;
  padding: 4px 5px;
  border-radius: 0.25rem;
}

#submission-item {
  box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.submission-item-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.submission-item-row .title {
  width: 240px;
}

.submission-item-row .value {
  width: calc(100% - 260px);
}

/** Tabs **/

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #5cb430;
  color: #fff;
  border-radius: 0;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 70%;
  border-left: none;
}

/** Profile Tab **/

#profil-tab-wrapper {
  max-width: 768px;
  margin: auto;
}

#profile-form .two-col {
  margin-bottom: 15px;
}

/** Error Handling **/

.error-message {
  color: #c40000;
  font-weight: 500;
}

/** Add Property **/

#addProperty .form-group {
  margin-bottom: 10px;
}

#addProperty .legend {
  margin-bottom: 0;
  margin-top: 5px;
  color: #666;
  font-size: 13px;
}

#unique_id {
  background-color: #f1f1f1;
}

.jquery-modal {
  z-index: 99 !important;
}

.submitted_properties_title {
  margin-left: 50px;
}

.error-message {
  color: red;
  margin-top: 10px;
  font-size: 14px;
  display: none; /* Initially hidden */
}

.error-message.visible {
  display: block; /* Show when there's an error */
}

#payment-element {
  margin-bottom: 20px;
}


/** Mobile **/

@media screen and (max-width:768px) {
  .tab {
    float: none;
    width: 100%;
  }
  .tabcontent {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0;
  }

  .submitted_properties_title {
    margin-left: 0;
  }
}