@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/muli/Muli-Regular.ttf"); }
@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf"); }
@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/muli/Muli-Bold.ttf"); }
@font-face {
  font-family: "Muli-Black";
  src: url("../fonts/muli/Muli-Black.ttf"); }
@font-face {
  font-family: "Muli-ExtraLight";
  src: url("../fonts/muli/Muli-ExtraLight.ttf"); }
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: "Muli-SemiBold";
  color: black;
  font-size: 12px;
  margin: 0; }

.row {
  display: flex;
  min-width: 100%; /* Avoid fixed widths exceeding the screen size */
  gap: 20px; /* Adjust gap as necessary */
}
.centered-row {
    display: flex; /* Use Flexbox for alignment */
    align-items: center; /* Vertically center items */
    justify-content: center; /* Horizontally center items */
    gap: 10px; /* Add spacing between the image and text */
}

.centered-row img {
    display: inline-block; /* Ensure the image is treated as an inline-block element */
}

.centered-row h3 {
    margin: 0; /* Remove default margins for better centering */
    font-family: "Muli-Black", sans-serif; /* Customize font */
    font-size: 18px; /* Adjust font size as needed */
    color: #c90c19; /* Set text color */
}
/* Create two equal columns that sits next to each other */
.column {
  flex: 33.33%;
  padding: 10px;
 
}


input, textarea, select, button {
  font-family: "Muli-ExtraLight";
  color: #333;
  font-size: 13px; }

p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0; }

img {
  max-width: 100%; }

ul {
  padding-left: 0;
  margin-bottom: 0; }

a:hover {
  text-decoration: none; }

:focus {
  outline: none; }

.wrapper {
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #2f2f2f; /* Fallback color */
  display: flex;
  align-items: center; }


.inneronline {
  width: 70%;
  height:auto;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 20px;
  border-radius: 10px;
  background: url("../images/registration-form-2.jpg") no-repeat center center; /* Centers the image */
  background-size: cover; /* Ensures the image covers the entire div */
}
.inner {
  min-width: 90%; /* Relative size for responsiveness */
  max-width: 100%;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 20px;
  border-radius: 10px;
  background: url("../images/registration-form-2.jpg") no-repeat center center; /* Centers the image */
  background-size: cover; /* Ensures the image covers the entire div */
}

.inneronsite {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 10px;
  border-radius: 10px;
  background-color: #f5f5f5; /* Light gray or any preferred color */
}

.inner h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: "Muli-Black";
    text-align: center;
    margin-bottom: 32px;
    color: #c90c19;
    letter-spacing: 3px; 
}

.inneronsite h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: "Muli-Black";
    color: #c90c19;
    letter-spacing: 3px;

    /* Center the text */
    text-align: center; /* Centers text horizontally */
    display: flex;      /* Enables Flexbox for vertical centering */
    align-items: center; /* Aligns items vertically */
    margin: 0;           /* Removes default margins */
    position: relative;  /* Keeps the element relative to its container */
}
.inneronline h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: "Muli-Black";
    color: #c90c19;
    letter-spacing: 3px;
    text-align: center; /* Horizontally centers text */
    display: flex; /* Enables Flexbox for centering */
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
    margin: 0; /* Removes default margins */
    padding: 0; /* Ensures no unwanted padding */
   
}


form {
  width: 100%;
  border-radius: 6px;
  padding: 30px;
 
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between elements */
  justify-content: space-between; /* Enscures even spacing for items */
}

.form-wrapper {
  flex: 1; /* Makes each input box equally wide */
  margin-bottom: 12px; /* Adds spacing below each input box */
  min-width: 200px; /* Ensures responsiveness */
}

.form-wrapper:last-child {
  margin-right: 0; /* Removes extra margin on the last item */
}

.form-wrapper label {
  display: block;
  margin-bottom: 4px; /* Space below label to align with other fields */
}

/* Responsive Design: Single-column on smaller screens */
@media (max-width: 768px) { /* Adjust the breakpoint as needed */
  .form-group {
    flex-direction: column; /* Stacks items vertically */
  }

  .form-group .form-wrapper {
    width: 100%; /* Full width for single-column layout */
    margin-right: 0; /* Remove horizontal spacing */
  }
}

.form-control {
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 5px;
  border-radius: 6px;
  font-family: "Muli-Regular", sans-serif; /* Standard font family */
  font-weight: 300; /* Bold font */
  font-size: 11px;
  line-height: 1.5;
  background: none;
  color: #333;
}

.form-control:focus {
  border: 1px solid #ae3c33;
  outline: none;
}

.form-wrapper small {
  display: block;
  color: #555;
  margin-bottom: 4px; /* Adjust spacing as needed */
}


select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 20px; }
  select option[value=""][disabled] {
    display: none; }

button {
  border: none;
  width: 152px;
  height: 40px;
  margin: auto;
  margin-top: 29px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ae3c33;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Muli-SemiBold";
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s; }
  button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f11a09;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  button:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); }

.checkbox {
  position: relative; }
  .checkbox label {
    padding-left: 22px;
    cursor: pointer; }
  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
  .checkbox input:checked ~ .checkmark:after {
    display: block; }

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  font-family: Material-Design-Iconic-Font;
  color: #000;f
  font-size: 10px;
  font-weight: bolder; }
  .checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: '\f26b'; }

@media (max-width: 991px) {
  .inner {
    min-width: 768px; 
   
   
  } }
@media (max-width: 767px) {
  .inner {
    min-width: auto;
    padding-top: 20px; /* Adjust padding */
    padding-bottom: 20px; /* Adjust padding */
    border-radius: 5; /* Remove border-radius for a flat look */
  }
  .inneronline {
    width: 90%; /* Make the element take up the full width */
  }

  form {
    width: 90%; /* Full width for the form */
    padding-right: 10; /* Remove extra padding */
    padding-left: 10; /* Remove extra padding */
  }
}

.mobile-only {
    display: none; /* Hide by default */
}

@media (max-width: 767px) {
    .mobile-only {
        display: block; /* Show on mobile */
    }
}
/*# sourceMappingURL=style.css.map */


/* radio botton column */
.attendance-columns {
    display: flex;
    justify-content: space-between;
    align-items: left;
}

.attendance-option {
    flex: 1;
    font-family: "Muli-SemiBold";
    display: flex;
    align-items: center;
    gap: 10px;
}

.attendance-option input[type="radio"] {
    vertical-align: left;
    line-height: normal;
    width: 18px; /* Increased size of radio button */
    height: 18px; /* Increased size of radio button */
}

.attendance-option label {
    margin: 0;
    vertical-align: middle;
    line-height: normal;
    font-family: "Muli-SemiBold";
}


/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns by default */
    gap: 15px; /* Space between checkboxes */
}
.checkbox-group1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 3 equal columns by default */
    gap: 15px; /* Space between checkboxes */
}

.checkbox-group.single-column {
    grid-template-columns: 1fr; /* Single column layout */
}

.checkbox-group div {
    display: flex;
    align-items: center; /* Vertically center checkbox and label */
    gap: 10px; /* Adds space between checkbox and label */
    font-family: "Muli-Regular", sans-serif; /* Ensures consistent font */
    font-size: 12px; /* Standard font size */
    cursor: pointer; /* Adds pointer cursor for better UX */
}

.checkbox-group input[type="checkbox"] {
    width: 18px; /* Increased size of checkbox */
    height: 18px; /* Increased size of checkbox */
    flex-shrink: 0; /* Prevent checkbox from shrinking */
}


/* Tablet responsiveness */
@media (max-width: 1024px) {
    .checkbox-group {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }
}

.radio-container {
  font-family: Arial, sans-serif;
  margin: 20px 0;
}

.question {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.required {
  color: red;
  font-weight: bold;
}

.radio-group {
  display: flex;
  gap: 20px; /* Adjust spacing between "Yes" and "No" */
  align-items: center;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px; /* Space between the radio button and text */
  font-size: 12px;
}

input[type="radio"] {
  margin: 0;
  width: 18px; /* Increased size of radio button */
  height: 18px; /* Increased size of radio button */
}
f
.image-container {
    text-align: right; /* Centers the image horizontally */
    margin: 0 auto; /* Ensure the container itself is centered */
    padding: 5px;
}

.responsive-image {
   width: 150px; /* Fixed width */
    height: 75px; /* Fixed height */
    object-fit: contain; /* Ensures the image maintains its aspect ratio inside the dimensions */
}

.three-column-footer {
    width: 100%;
    background-color: #f8f9fa; /* Light gray background */
    padding-top: 0px;
    text-align: center; /* Center the text for consistency */
}

.three-column-footer .column {
    display: inline-block; /* Align columns inline */
    vertical-align: top; /* Align columns to the top */
    width: 30%; /* Allocate 30% width to each column */
    margin: 0 1.5%; /* Add space between columns */
    box-sizing: border-box; /* Include padding and border in width */
}

.three-column-footer .column h3 {
    margin-top: 0; /* Remove default top margin */
    font-family: "Muli-Black";
}

@media screen and (max-width: 768px) {
    .three-column-footer .column {
        width: 100%; /* Stack columns vertically on smaller screens */
        margin: 10px 0;
    }
}
 .icon-text {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px; /* Optional for spacing between rows */
    }
    .icon-text img {
        width: 25px;
        height: 25px;
    }
    
/* Footer Styling */
.footer-container {
    background: white;
    text-align: center;
   
}

.footer-line {
    width: 100%;
    margin: 10px auto;
    height: 6px;
    background-color: #333333;
}

.footer-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row styling for footer */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Column styling within the footer */
.footer-column {
    text-align: left;
    flex: 1 1 30%;
    min-width: 250px;
    margin-bottom: 20px;
}

/* Contact Details */
.contact-details {
    color: #666666;
    font-weight: bold;
}

/* Social media icon container */
.social-icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.social-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/* Footer bottom line */
.footer-bottom-line {
    width: 80%;
    margin: 10px auto;
    height: 2px;
    background-color: #c3c3c3;
}

/* Footer link styling */
.footer-link {
    color: blue;
    text-decoration: underline;
}
.footer-logo {
    width: 200px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .footer-line {
        width: 100%;
    }
}
/* Button Styling */
.button {
  background-color: #007BFF; /* Blue background */
  color: white; /* White text */
  padding: 12px 24px; /* Padding inside the button */
  font-size: 16px; /* Font size */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  display: inline-block; /* Display buttons inline */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  margin: 10px; /* Add some space around the buttons */
}

/* Button hover effect */
.button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Button container */
.button-container {
  display: flex; /* Flexbox to arrange buttons side by side */
  justify-content: space-between; /* Space between the buttons */
  gap: 20px; /* Add space between the buttons */
  flex-wrap: wrap; /* Allow buttons to wrap to the next line */
  width: 100%;
}

@media screen and (max-width: 768px) {
  .button-container {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center buttons */
  }

  /* Add space between stacked buttons */
  .button {
    margin: 10px 0; /* Add vertical margin between stacked buttons */
  }
}