.signup {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.signup-container {
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  margin-top:145px;
  max-width: 500px;
 justify-content: space-between;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.signup-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #f00;
}

.section {
  margin-bottom: 1rem;
}

h3 {
  color: #f00;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ccc;
}

input {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
}

.next-button {
  width: 100%;
  padding: 0.8rem;
  background-color: #f00;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.signup-button {
  width: 100%;
  padding: 0.8rem;
  background-color: #f00;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.error-message {
  margin-top: 1rem;
  color: #f88;
  text-align: center;
  font-size: 0.9rem;
}

#reviewDetails {
  background-color: #333;
  padding: 1rem;
  border-radius: 5px;
  color: #fff;
}


/* Style the form container */
#reachSection {
    display: block;
    width: 100%;
}

/* Use Flexbox to align two input fields in a row */
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* Ensure each form group takes up half the space in the row */
.form-group {
    flex: 1;
    margin-right: 15px; /* Add space between inputs */
}

.form-group:last-child {
    margin-right: 0; /* Remove margin for the last item in the row */
}

/* Add spacing between form rows */
.form-row .form-group {
    margin-right: 10px;
}

/* Ensure the labels align properly above the input fields */
label {
    display: block;
    margin-bottom: 5px;
}

/* Adjust the size of the input fields */
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-top: 5px;
}

button.next-button {
    margin-top: 20px;
}

