body {
    font-family: Arial, sans-serif;
    background-color:  #F4F4F4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  

  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .container {
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .title {
    font-size: 64px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
  }

  .input-group {
    margin-bottom: 10px;
  }

  input[type="text"] {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
    border: 2px solid #909090;
    box-sizing: border-box; /* Add this line to include padding in input width */
    text-align: center;
    font-size: 1.25rem;
  }

  .button {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-color: #485460;
    /* background-color: #ffc048; */
    cursor: pointer;
    font-size: 1.25rem;
  }

  .main {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.6rem;
  }

  .button.orange {
    background-color: #ffc048;
    /* background-color: #378CE7; */
    /* background-color: #5356FF; */
    /* background-color: #f6e2ef; */
  }

  .terms-link {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}

.terms-link a {
color: #333;
text-decoration: none;
font-size: 1rem;
}

.terms-link a:hover {
text-decoration: underline;
}

.direction {
  padding: 20px;
}


/* create page 
*/

a {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits the color from the parent element */
}

.dropdown {
  display: flex;
  flex-wrap: wrap; /* This allows for responsiveness, columns will stack on smaller screens */
  gap: 10px; /* Adjust the gap between columns */
  justify-content: center; /* This centers the children horizontally */
  align-items: center; /* This centers the children vertically */
  /* border: 6px solid aqua; */
}

.column{
  flex: 1; /* This makes both columns equal width */
  /* ... your other styles ... */
  padding-bottom: 40px;
  /* border: 3px solid salmon; */
}

select {
  text-align: center;
  background-color: whitesmoke;
  border: none;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 22px;
}


label {
  margin: 20px;
}


@media (max-width: 768px) {
  .container {
    padding: 30px;
    /* border: 3px solid salmon; */
  }
}