@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: url(background1123.jpg) no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
}

.navbar {
  padding-top: 10px; /* Adjust the top padding as needed */
  padding-bottom: 100px; /* Adjust the bottom padding as needed */
  height: 10px; /* Adjust the height of the navbar as needed */
}

.navbar-brand {
  display: flex;
  align-items: center;
  
}

.navbar label {
  font-size: 25px;
  color: black;
}

.container {
  position: relative;
  margin-bottom: 25px;
  margin-left: 50px;
  padding-top: 200px;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.container header {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.form .column {
  display: flex;
  column-gap: 15px;
  
}

.column .form-group {
  flex-basis: 50%;
}

.form-group label {
  margin-top: 15px;
  font-size: 15px;
}

.form-check label,
.form-check p {
  font-size: 15px;
}

.d-grid .btn {
  height: 55px;
  width: 100%;
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  background: rgb(251, 222, 108);
}

.d-grid .btn:hover {
  color: white;
  background: rgb(248, 198, 15);
}

.text-center {
  font-size: 15px;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}