body{
    font-family: 'Calibri';
}
/* Form container */
.form-container {
    font-size: 16px;
    max-width: 100rem;
    margin: 0 auto;
    padding: 1.5rem;
    padding-right: 0;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
    font-family: 'Calibri';
}
/*page on mobile app*/
.page{
    display: block;
}
/* Form input fields */
.form-element {
    font-family: 'Calibri';
    margin-bottom: 15px;
    margin-right: 1.5rem;
}
.form-element label { 
    font-weight: normal;
}
.form-element input,
.form-element select,
.form-element textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.form-element input{
    color: #000000;
}
.form-element-checkbox{
    display: flex;
    margin: 20px;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
    font-family: 'Calibri'
}
.form-element-checkbox label{
    font-weight: normal;
    font-size: 20px;
}
.form-element-checkbox input{
    width: 1.1rem;
    height:1.1rem;
    margin-right: 3px;
}  
.side-by-side {
    display: flex;
    flex-wrap: wrap;
    align-items: first baseline;
}
.side-by-side .form-element {
    flex: 1 1 25%; /* Adjust width as needed */
    /* Adjust spacing between fields */
    margin-bottom: 1rem; /* Adjust vertical spacing */
}
.side-by-side .form-element label {
    width: 100%;
}
.side-by-side .form-element input,
.side-by-side .form-element select {
    width: 100%;
}

/* Submit button */
.submit-button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: rgb(52, 198, 244);
  color: #ffffff;
  border: none;
  border-radius: 30px 30px 30px 30px;
  cursor: pointer;
  margin: auto;
  width: 130px;
  height: 50px;
}

.submit-button:hover {
    background-color: #005fb2;
}
.submit-button:disabled {
    background-color: #cccccc; /* Same gray background */
    color: #666666; /* Same dark gray text color */
    cursor: not-allowed; /* Ensure cursor style remains */
}
.plain-button{
    display: inline-block;
    padding: 8px 16px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: rgb(52, 198, 244);
    color: #ffffff;
    border: none;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer;
    margin: auto;
    height: 50px;
}
.required{
    color: red;
    margin: 3px;
}
.return-message{
    display:flex; 
    justify-content:center; 
    height:50vh; 
    align-items:center;
}
.invalid {
    border: 2px solid red;
}

.error-message {
display: none;
color: red;
}
.header{
font-size: xx-large;
font-weight: bold;
text-align: center;
}
.subheader{
font-size: x-large;
text-align: center;
padding: 2vh;
}
@media(min-width: 600px){
    .buttons{
      margin-top: 15px;
      text-align: right;
      margin-right: 2rem;
    }
}
@media(max-width: 600px){
    .buttons{
        display: flex;
        width: 100%;
        position:fixed;
        bottom: 10px;
        left: 0px;
        background-color: white;       
    }
}