*,
*:after
*:before{
    box-sizing: border-box;
}

body{
    font-family: 'inter', sans-serif;
    color: #000021;
    font-size: calc(1em + 1.1vw);
    background-color: #8ac8dd;
}

.title1 {
    padding-top: 30px;
    text-align: center
}


.container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

form{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

label{
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5775em;
}

label input{
    position: absolute;
    left: -9999px;
}

label input:checked + span::before{
    box-shadow: inset 0 0 0 0.4375em #3095b7;
}

label span{
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    transform: 0.25 ease;
}

label span:hover{
    background-color: rgba(48, 149, 183, .25);
    border-radius: 20px;
}

label span::before{
    display: flex;
    flex-shrink: 0;
    content: '';
    background-color: #ffff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #3095b7;
    
}