.container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}   .checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
} .container:hover input ~ .checkmark {
background-color: #ccc;
} .container input:checked ~ .checkmark {
background-color: #9b51e0;
} .checkmark:after {
content: "";
position: absolute;
display: none;
} .container input:checked ~ .checkmark:after {
display: block;
} .container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
} .form-box {
max-width: 1200px;
margin: auto;
padding: 40px;
background-color: #ddcce6;
} .form-section {
background-color: #ffffff;
padding: 20px;
margin-bottom: 20px;
} .form-title.title-line {
text-align: center;
margin-bottom: 30px;
}
.form-title.title-line span {
color: #8343A3;
font-size: 1.5rem;
font-weight: bold;
} .form-group {
margin-bottom: 1.5rem;
}
.form-group.mb-5 {
margin-bottom: 3rem;
} .new-input {
position: relative;
margin-top: 20px;
}
.new-input input,
.new-input textarea {
width: 100%;
padding: 10px 5px;
border: none;
border-bottom: 1px solid #ACACAC;
background: transparent;
font-size: 16px;
}
.new-input input:focus,
.new-input textarea:focus {
outline: none;
border-bottom: 2px solid #8343A3;
} textarea.form-control {
width: 100%;
border: 1px solid #ced4da;
border-radius: 4px;
padding: 10px;
min-height: 100px;
} .text-danger {
color: #CE3636;
} .checkbox {
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
display: block;
}
.checkbox input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: white;
border: 1px solid #8343A3;
}
.checkbox:hover input ~ .checkmark {
background-color: #f0f0f0;
}
.checkbox input:checked ~ .checkmark {
background-color: #8343A3;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.checkbox input:checked ~ .checkmark:after {
display: block;
}
.checkbox .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
} .checkbox-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
margin-top: 15px;
}
.checkbox-wrapper {
padding: 5px;
} .custom-file {
position: relative;
display: inline-block;
width: 100%;
margin-bottom: 10px;
}
.custom-file-input {
position: relative;
z-index: 2;
width: 100%;
height: calc(2.25rem + 2px);
margin: 0;
opacity: 0;
}
.custom-file-label {
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 1;
height: calc(2.25rem + 2px);
padding: .375rem .75rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
background-color: #fff;
border: 1px solid #ced4da;
border-radius: .25rem;
} .help-block {
font-size: 0.875rem;
color: #6c757d;
margin-top: 5px;
} h3 {
color: #8343A3;
margin-bottom: 20px;
font-size: 1.5rem;
}
h6 {
font-size: 1rem;
margin-bottom: 15px;
} button[type="submit"] {
background-color: #8343A3;
color: white;
padding: 12px 30px;
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 16px;
min-width: 200px;
margin-top: 20px;
}
button[type="submit"]:hover {
background-color: #742e8d;
} @media (max-width: 768px) {
.form-box {
padding: 20px 15px;
}
.checkbox-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.form-section {
padding: 15px;
}
} #authorised_representative {
display: none;
background-color: #ffffff;
padding: 20px;
margin-top: 20px;
} .was-validated .form-control:invalid {
border-color: #CE3636;
}
.was-validated .form-control:valid {
border-color: #28a745;
} .mb-4 {
margin-bottom: 1.5rem;
}
.mb-5 {
margin-bottom: 3rem;
} .eoc-message {
text-align: center;
margin-bottom: 20px;
font-weight: bold;
} .g-recaptcha {
margin: 20px 0;
display: flex;
justify-content: center;
}