body {
    background: rgba(255, 255, 255, 1);
    font-family: "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
    color: black;
}
main {
    margin-top: 30px;
    margin-bottom: 70px;
}
.body-upper-text {
    width: 65%;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}
.body-upper-text h5 b {
    color: rgba(253, 111, 34, 1);
    font-weight: 700;
}

/* .container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input , select{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.main-form {
    width: 50%;
    /* margin-left: 350px; */
    margin: auto;
}
.main-form h4 {
    color: rgba(253, 111, 34, 1);
    font-weight: 600;
    margin-left: -200px;
    margin-bottom: 50px;
    margin-top: 50px;
}
.main-form img {
    margin-top: -4px;
}
.form-group #inquiry {
    width: 100%;
}
.form-group {
    font-size: 18px;
}
.form-group b {
    color: rgba(253, 111, 34, 1);
    font-size: 18px;
}
.main-form .btn.btn-outline-secondary {
    width: 180px;
    height: 50px;
    color: var(--main2, #FD6F22);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    border-radius: 6px;
    border: 1px solid var(--main2, #FFF);
    background: rgba(236, 102, 26, 0.05);
}
.main-form button {
    margin-left: 200px;
}
input#essential {
    width: fit-content;
    display: inline;
    margin: 0 10px 0 0;
}
.submit-container {
    display: grid;
    justify-items: center;
}

.checkbox-label {
    /* margin-left: -300px; */
    font-weight: 300;
    display: inline-block;
}
.checkbox-label b {
    font-weight: 500;
    color: rgba(253, 111, 34, 1);
}

.checkbox-input {
    margin-left: -310px;
    margin-top: -6px;
    accent-color: red;;
}


/* Mobile screens */
@media  (max-width: 768px) {
    .body-upper-text {
        width: 90%;
        margin-left: 10px;
        margin-bottom: -50px;
    }
    .main-form {
        width: 90%;
        margin-left: 15px;
    }
    .checkbox-input {
        margin-left: -150px;
    }
    .checkbox-label {
/*        margin-left: -150px;*/
    }
    .checkbox-label b{
        font-size: medium;
    }
    .checkbox-container {
        font-size: 12px;
    }
    .main-form button {
        margin-left: 80px;
    }
}

@media screen and (min-width: 2048px) {
    .main-form {
        margin-left: 550px;
    }
    .main-form .btn.btn-primary {
        margin-left: 400px;
    }
    .end-line-text {
        margin-left: 500px;
    }
}


/* Customize the checkbox */

/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 22px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border:2px solid #D9D9D9;
}

  /* On mouse-over, add a grey background color */
  /* .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
  } */


  /* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

  /* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

  /* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 3px;
    top: auto;
    width: 5px;
    height: 10px;
    border: solid #EC661A;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* When the checkbox is checked, add a white background */
.checkbox-container input.checkbox-input:checked ~ .checkmark {
    background-color: #fff;
    border:2px solid #EC661A;
}

.checkbox-container input.checkbox-input:checked ~ .checkmark:after {
    border: 2px solid #EC661A;
    border-width: 0 2px 2px 0;
}
