/* Reset default margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
}

/* Apply Inter font to the entire page */
body {
    font-family: 'Inter', sans-serif;
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 20px;
}

img {
    border: 2px solid black;
}
.center-logo {
    max-width: 25%;
    height: auto;
    /* Add any other styles or borders for your logo here */
}
/* Add a background color to the body */
body {
    background-color: white;
}

/* Center the container vertically and horizontally */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh; /* 100% of the viewport height */
    text-align: center; /* Center text within the container */
}

/* Style for buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #007BFF; /* Change to your preferred button color */
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    width: 200px; /* Set a fixed width for both buttons */
}

/* Adjust button size for smaller screens like iPads */
@media (max-width: 768px) {
    .btn {
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 8px 16px; /* Adjust padding for smaller buttons */
        width: 160px; /* Set a fixed width for both buttons on smaller screens */
    }
}


/* Center-align h1 headings and add some margin */
h1 {
    text-align: center;
    margin: 20px 0;
}

/* Style buttons with a modern look */
button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

/* Style buttons on hover */
button:hover {
    background-color: #0056b3;
}

/* Style forms and form elements */
form {
    max-width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjust left and right padding for input fields */
input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="email"]
input[type="checkbox"],
textarea {
    width: 100%;
    padding: 10px 0px; /* Equal left and right padding */
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
input[type="checkbox"]{
    width:auto !important;
}

/* Style the signature pad */
#signature-pad {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;

}

canvas {
    border: 1px solid #ccc;
}

#clear-signature {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Style checkbox labels */
/* Style checkbox labels and move them to the same line as the text */
input[type="checkbox"] + label {
    font-weight: normal;
    display: inline; /* Display the label inline with the checkbox */
    margin-left: 5px; /* Add some spacing between the text and checkbox */
}


/* Add spacing between form elements */
form > * {
    margin-bottom: 15px;
}

/* Style links */
a {
    text-decoration: none;
    color: #007BFF;
}

/* Style links on hover */
a:hover {
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;   /* Adjust height as necessary */
    background-color: #333;   /* Background colour for the footer */
    color: #fff;   /* Text colour for the footer */
    text-align: center;
    line-height: 50px;   /* Centres the text vertically */
    font-size: 14px;
}

.footer-brand {
    color:white;
    font-weight: bold;
}
/* CSS for the modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  font-size:14px;
}

/* Style the close button */
.close {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
