@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: 14px;
  margin: 0; }

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: #f0f0f0; /* Fallback color */
  display: flex;
  align-items: center; }

.inner {
  min-width: 800px;
  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 h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: "Muli-Black";
    text-align: center;
    margin-bottom: 32px;
    color: #c90c19;
    letter-spacing: 2px; }
    


form {
  width: 1000px;
  border-radius: 6px;
  padding: 30px;
 
}


.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between elements */
  justify-content: space-between; /* Ensures even spacing for items */
}

.form-wrapper {
  flex: 1; /* Makes each input box equally wide */
  margin-bottom: 17px; /* 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: 5px; /* 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 20px;
  border-radius: 6px;
  font-family: "Muli-Regular", sans-serif; /* Standard font family */
  font-weight: 300; /* Bold font */
  font-size: 12px;
  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;
  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 */
  }

  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-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: 14px; /* 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 */
}