@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    background-image: url('bbb\ 2.png');
    background-position: center;
    background-size: cover;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

p {
    color: #fff;
    font-size: 2em;
    margin-bottom: 10px;
}

label {
    position: relative;
    margin: 5px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #fff;
}

label input {
    appearance: none;
    display: none;
}

label span {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    /* background: #111; */
    margin-right: 15px;
    transition: 0.5s;
}

label span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    box-shadow: 0 -27px 0 #fff;
    transition: 0.5s;
}

label input:checked~span.check::before {
    background: #0f0;
    box-shadow: 0 0 0 transparent;
}

label input:checked~span.cross::before {
    background: #f00;
    box-shadow: 0 0 0 transparent;
    transform: rotate(-45deg) translate(10px, -9px);
}

label span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #fff;
    box-shadow: 27px 0 0 #fff;
    transition: 0.5s;
}

label input:checked~span.check::after {
    height: 50%;
    background: #0f0;
    box-shadow: 0 0 0 transparent;
}

label input:checked~span.check {
    transform: rotate(-45deg) translate(7px, -7px);
}

label input:checked~span.cross::after {
    background: #f00;
    box-shadow: 0 0 0 transparent;
    transform: rotate(-45deg) translate(10px, 10px);
}

.heading {
    font-size: larger;
    color: #fff;
    padding: 20px;
}

.question {
    font-size: 9px;
   
}

.inputBox [type="submit"] {
    background: #ca4b6f;
    color: #fff;
    font-size: 16px;
    max-width: 320px;
    font-weight: 400;
    border: none;
    outline: none;
    border-radius: 22px;
    position: absolute;
    cursor: pointer;
    padding: 14px 95px;
    text-decoration: none;
}