.description {
  margin-left: 5px;
}

/* Add these styles for custom checkboxes */
.checkbox-container {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  margin-bottom: 1rem;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border: 1px solid #000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 3px;
  width: 3px;
  height: 6px;
  border: solid transparent;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #0072c6;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
  border-color: #fff;
}

.checkbox-label {
    margin-bottom: 100px; /* Adjust the margin value as needed */
}

/* Rest of your existing CSS styles */


/* Logo and Header Container styles */
.logo-header-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-align items horizontally */
    margin-top: 20px; /* Add some top margin for spacing */
}

/* Logo Section styles */
.logo-container img {
    max-width: 50%;
    height: auto;
}

/* Header Section styles */
.header-container {
    color: #000000; /* White text */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

/* Color Scheme */
body {
    background-color: #f5f5f5;
    color: #333;
}

a {
    color: #0072c6;
}

/* Regular */
.reg {
    color: #000000; /* White text */
    padding: 12px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

/* Regular centered */
.reg-centered {
    color: #000000; /* White text */
    padding: 12px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

/* Last regular centered */
.reg-centered2 {
    color: #000000; /* White text */
    padding: 12px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 100px;
}

/* Footer */
.footer {
    color: #808080; /* White text */
    padding: 12px;
    text-align: center;
}

/* Button */
.button {
    background-color: #1793cc;
    border-radius: 3px;
    border: 1px solid #7aa7c7;
    box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15385;
    margin: 0;
    outline: none;
    padding: 8px .8em;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
    display: block;
    margin-top: 1.5rem;
}

.button:hover,
.button:focus {
    background-color: #000a46;
    color: #ffffff;
}

.button:focus {
    box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
}

.button:active {
    background-color: #a0c7e4;
    box-shadow: none;
    color: #2c5777;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

p, li {
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
nav {
    background-color: #0072c6;
    color: #fff;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
}

nav a {
    display: block;
    padding: 10px;
}

nav ul ul {
    display: none;
    position: absolute;
}

nav ul li:hover > ul {
    display: inherit;
}

nav ul ul li {
    width: 200px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 200px;
}

/* Image centered */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

label {
    display: inline-flex; /* Display label text next to the checkbox */
    align-items: center; /* Align the text and checkbox vertically */
    margin-bottom:15px;
}

input[type="checkbox"].container {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--form-background);
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

input[type="checkbox"].container::before {
    content: "";
    width: 1em; /* Increase the width for a more visible checkmark */
    height: 1em; /* Increase the height for a more visible checkmark */
    border: 2px solid var(--form-control-color); /* Add a border to the checkmark */
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg); /* Rotate the border to create a checkmark shape */
    transform-origin: center;
    transition: 120ms transform ease-in-out;
}

input[type="checkbox"].container:checked::before {
    transform: rotate(45deg); /* Rotate the checkmark to its final position */
    border-color: var(--form-control-color); /* Change the border color when checked */
}

input[type="checkbox"].container:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}

input[type="checkbox"].container:disabled {
    --form-control-color: var(--form-control-disabled);
    color: var(--form-control-disabled);
    cursor: not-allowed;
}

