
body {
    font-family: Arial, sans-serif;
    background-color:rgb(var(--brand-main));
    margin: 0;
    padding: 0 15px;
    padding-bottom: 10px;
}

h1 {
    color: rgb(var(--brand-alt));
    text-align: center;
}

h3 {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 1rem;
    margin-top: 35px;
}

p {
    font-size: 1em;
    color: rgb(253, 249, 249);
    text-align: center;
    margin-bottom: 20px;
}

.text-container {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: -3px 3px 6px 0 rgba(0,0,0,0.2);
    border-color: black;
    margin: auto;
    margin-top: 10px;
    max-width: 800px;
    box-sizing: border-box;
}


#progressBarContainer {
    display: flex;
    justify-content: space-around;
    background-color: darkgrey;
    padding: 10px;
    border-radius: 5px;
}

.progressStage {
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.progressStage:hover {
    background-color: orange;
}


.form-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255); /* Adjust color as needed */
    width: 98%; /* Adjust width as needed */
    margin: 40px auto; /* Adds padding above and below */
}

form {
    background-color: rgb(0, 176, 80);
    padding: 20px;
    border-radius: 8px;
    box-shadow: -5px 5px 8px 0 rgba(0,0,0,0.4);
    border-color: black;
    max-width: 800px;
    margin: 10px auto; /* 15px margin on the top and bottom, auto on the left and right */
    box-sizing: border-box;
}

label {
    display: block;
    margin: 10px 0;
    color: darkgrey;
}

select {
    width: 100%; /* Full width of the container */
    max-width: 400px; /* Maximum width to maintain design */
    margin-left: auto; /* Auto margin on the left for centering */
    margin-right: auto; /* Auto margin on the right for centering */
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block; /* Ensure the input is treated as a block-level element */
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}

button {
    background-color: rgb(var(--brand-main));
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width: 250px;
    display: block;
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
    margin-left: auto; /* Auto margin on the left for centering */
    margin-right: auto; /* Auto margin on the right for centering */
    margin-bottom: 10px;
}

button:hover {
    background-color: purple;
}

input[type="text"] {
    width: 100%; /* Full width of the container */
    max-width: 400px; /* Maximum width to maintain design */
    margin-left: auto; /* Auto margin on the left for centering */
    margin-right: auto; /* Auto margin on the right for centering */
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block; /* Ensure the input is treated as a block-level element */
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}


#orgDescription {
    width: 100%; /* Full width of the container */
    max-width: 400px; /* Maximum width to maintain design */
    margin-left: auto; /* Auto margin on the left for centering */
    margin-right: auto; /* Auto margin on the right for centering */
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block; /* Ensure the input is treated as a block-level element */
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}

input[type="number"] {
    width: 100%; /* Full width of the container */
    max-width: 400px; /* Maximum width to maintain design */
    margin-left: auto; /* Auto margin on the left for centering */
    margin-right: auto; /* Auto margin on the right for centering */
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block; /* Ensure the input is treated as a block-level element */
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}

input[type="email"] {
    width: 100%; /* Full width of the container */
    max-width: 400px; /* Maximum width to maintain design */
    margin-left: auto; /* Auto margin on the left for centering */
    margin-right: auto; /* Auto margin on the right for centering */
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block; /* Ensure the input is treated as a block-level element */
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}

/* -----------------------------Radio box elements -------------------------------- */
input[type="range"] {
    -webkit-appearance: none; /* Optional based on your custom styling needs */
    width: 100%;
    max-width: 500px;
    margin: 10px auto 35px auto; /* Combines margin properties */
    padding: 10px;
    background-color: rgb(var(--brand-alt));
    display: block; /* Ensure the input is treated as a block-level element */
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #ddd;
    border: none;
    border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: rgb(var(--brand-main));
    margin-top: -8px;
    cursor: pointer;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #ddd;
    border: none;
    border-radius: 4px;
}

input[type="range"]::-moz-range-thumb {
    border: none;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: orange;
    cursor: pointer;
}

input[type="range"]::-ms-track {
    width: 100%;
    height: 8px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type="range"]::-ms-thumb {
    border: none;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: orange;
    cursor: pointer;
}

output {
    text-align: center;
    display: block;
    color: #ffffff;
}

/* -----------------------------Radio box elements -------------------------------- */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust the minmax values as needed */
    gap: 10px; /* Spacing between grid items */
    justify-content: center; /* Center the grid */
    align-items: center; /* Align items vertically */
    margin-bottom: 20px;
    padding: 10px;
}

input[type="radio"] {
    display: none; 
}

.radio-label {
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background-color: white;
    color: rgb(114, 114, 114);
    transition: background-color 0.3s;
    text-align: center;
    height: 60px; /* Set a fixed height */
}

/* Styling for checked state */
input[type="radio"]:checked + .radio-label {
    background-color: rgb(var(--brand-main));
    color: white;
}

.radio-label:hover {
    background-color: purple; /* Light orange background on hover */
}

/* -----------------------------Checkbox elements ------------------------------------ */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust the minmax values as needed */
    gap: 10px; /* Spacing between grid items */
    justify-content: center; /* Center the grid */
    align-items: center; /* Align items vertically */
    margin-bottom: 20px;
    padding: 10px;
}

.checkbox-label {
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background-color: white;
    color: rgb(114, 114, 114);
    transition: background-color 0.3s;
    text-align: center;
    height: 60px; /* Set a fixed height */
}

/* Maintain existing hover and checked states styling */
.checkbox-label:hover {
    background-color: purple;
}

input[type="checkbox"]:checked + .checkbox-label {
    background-color: rgb(var(--brand-main));
    color: white;
}

input[type="checkbox"] {
    display: none;
}

/*---------------------------------------------------------------
 ----------- Start Privacy banner controls-----------------------
--------------------------------------------------------------------*/
.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(135, 206, 235, 0.5);
    z-index: 9998;
  }
  .privacy-banner {
    position: fixed;
    bottom: 20px;
    background:rgba(255, 255, 255, 0.932);
    padding-top: 15px;
    padding-inline: 15px;
    text-align: center;
    z-index: 9999;
    font-family: var(--font-family-p);
    width: 100%;
    border: 1px solid gray;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .privacy-banner p {
    margin-bottom: 18px;
    font-weight: bold;
    color: var(--corp-b);
    font-size: 12px;
  }
  .privacy-banner button {
    background-color: var(--corp-a);
    color: var(--corp-b);
    border: 1px solid #000;
    padding: 7px 15px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
  }
  .privacy-banner button:hover { 
    background: rgba(170, 109, 4, 0.767);
    color:  var(--corp-b);
    color: var(--corp-w)
  }
