.name_form {
  display: flex;
}


b {
  background-color: aqua;
}

.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
}

.center-btn a {
  background-color: #ff4f00;
  color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  margin: 10%;
}

.name_form {
  width: fit-content;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name_form p {
  text-align: center;
}

.name_form input {
  height: 40px;
  padding: 0 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.name_form button,
.confirm_name input[type="submit"],
.name_form input[type="submit"] {
  height: 2.5rem;
  width: 75%;
  min-width: fit-content;
  font-size: 1.3rem;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ff4f00;
  margin-top: 5%;
}

.confirm_name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  flex-direction: column;
  margin-top: 10%;
}

#enter_name_err {
  color: red;
  margin-top: 10px;
  margin-right: 5%;
  margin-left: 5%;
}

.btn-container {
  height: auto;
  width: 100%;
  text-align: center;
}

.form-container {
  display: flex;
  justify-content: center;
}