.modern-signup {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.form-group-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.name-fields {
  display: flex;
  gap: 20px;
}

.modern-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.modern-input:focus {
  border-color: #007bff;
  outline: none;
}

.password-group .input-group {
  position: relative;
}

.show-hide {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #007bff;
  font-size: 12px;
}

.terms-group {
  margin-top: 20px;
}

.custom-control-label {
  font-size: 14px;
  color: #666;
}

.modern-button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  background-color: #007bff;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modern-button:hover {
  background-color: #0056b3;
}

.modern-button:disabled {
  background-color: #b3d7ff;
  cursor: not-allowed;
}

.login-alternative {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.login-alternative a {
  color: #007bff;
  text-decoration: none;
}

.error-message {
  background-color: #ffe6e6;
  color: #d8000c;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.custom-control-input {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  border: 2px solid #007bff; /* Use your primary color */
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  cursor: pointer;
}

.custom-control-input:checked {
  background-color: #007bff; /* Use your primary color */
  border-color: #007bff;
}

.custom-control-input:checked::before {
  content: '\2713';
  display: block;
  text-align: center;
  color: white;
  font-size: 1.2em;
  line-height: 1.2;
}

.custom-control-label {
  padding-left: 0.5em;
  cursor: pointer;
}

.terms-group {
  margin-top: 1rem;
}
