body {
  background:url("../img/patterns-3.jpg") repeat top;
}
input, textarea, select {
  border-radius: 10px;
  width: 100%; /* Ensures the input fields are responsive */
  padding: 2px; /* Adds padding for better touch targets on mobile */
}

@media (max-width: 768px) {
  input, textarea, select {
    border-radius: 8px; /* Slightly reduce the border-radius on tablets */
    padding: 1px; /* Adjust padding for smaller screens */
  }
}

@media (max-width: 576px) {
  input, textarea, select {
    border-radius: 6px; /* Reduce the border-radius further for mobile */
    padding: 1px; /* Smaller padding for mobile screens */
  }
}

.bg-top {
  margin: 90px 0px;
}
.container-opacity {
  color: #000;
  background-color: #fe5c36;
}
.input-radio {
    display: inline;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .container input[type="radio"], .container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    display: none;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 12px;
    background-color: #fff;
    /* border-radius: 50%; */
  }
  
  /* When the radio button is checked, add a red background */
  .container input:checked ~ .checkmark {
    background-color: #000;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgb(255, 255, 255);
  }