* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper form {
  margin-top: 30px;
}

.wrapper form .input-box {
  display: flex;
  flex-direction: row; 
  align-items: center;
  margin: 18px 0;
  justify-content: flex-end; /* Align input to the right */
}

.wrapper form .input-box label {
  width: 120px; 
  font-size: 17px;
  font-weight: 500;
  color: #333;
  margin-right: 10px; 
  text-align: right;
}

form .input-box input {
  height: 40px; /* Set a fixed height */
  width: 400px; /* Set a fixed width */
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
  flex-grow: 0; /* Prevent input from stretching */
}

.input-box input:focus,
.input-box input:valid {
  border-color: #256314;
}

form .policy {
  display: flex;
  align-items: center;
}

form h3 {
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  /* margin-left: 10px; */
  padding-bottom: 5px;
}

.input-box.button input {
  color: #fff;
  letter-spacing: 1px;
  border: none;
  background: #256314;
  cursor: pointer;
}

.input-box.button input:hover {
  background: #0c4d15;
}

form .text h3 {
  color: #333;
  width: 100%;
  text-align: center;
}

form .text h3 a {
  color: #4070f4;
  text-decoration: none;
}

form .text h3 a:hover {
  text-decoration: underline;
}


.registration-label {
  float: left; /* Makes the label float to the left */
  margin-right: 10px; /* Adds space between label and input */
}

.input-box.button.registration-input {
  display: flex; 
  justify-content: center; 
  margin-top: 20px; 
  width: 100%; 
}

.policy.registration-input {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  margin-top: 20px;
  text-align: center; 
}

div.required-message {
  display: flex; 
  justify-content: center; 
  margin-top: 10px; 
  font-size: 14px; 
}


@media (max-width: 430px) {
  .registration-label {
    float: none; /* Removes float for smaller screens */
    display: block; /* Makes label take full width */
    margin-right: 0; /* Removes right margin */
  }
}



