#module-pliciwebmain-joinus #left_column {
  display: none;
}

.joinus-container {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.joinus-header {
  background-color: #e5002b;
  color: #fff;
  padding: 30px 20px;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.joinus-form {
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 4px;
  text-align: left;
}

.joinus-form p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.joinus-form label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.joinus-form input[type="text"],
.joinus-form input[type="email"],
.joinus-form input[type="tel"],
.joinus-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.joinus-form textarea {
  resize: vertical;
}

.joinus-form input[type="submit"] {
  background-color: #e5002b;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.joinus-form input[type="submit"]:hover {
  background-color: #e5002b;
}

.joinus-form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.radio-group {
  margin-bottom: 20px;
}

.radio-group label {
  margin-right: 20px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.radio-group input[type="radio"] {
  margin-right: 6px;
  cursor: pointer;
}

.joinus-form label.field-required::after {
    content: " *";
    color: #e74c3c;
    font-weight: bold;
}