* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #130f40;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 250px;
    width: 300px;
    background-color: #ecf0f1;
    border-radius: 20px;
    padding: 20px;

    & .header {
        font-size: 19px;
        font-weight: 600;
    }

    & .group {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 100%;

        & .item {
            display: flex;
            justify-content: space-between;
            gap: 65px;
            font-weight: 500;
            white-space: nowrap;
        }

        & input[type="checkbox"] {
            position: relative;
            height: 18px;
            width: 36px;
            outline: none;
            cursor: pointer;
            border-radius: 20px;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
            -webkit-appearance: none;
            transition: .5s;
        }

        & input[type="checkbox"]::before {
            content: "";
            position: absolute;
            height: 18px;
            width: 18px;
            border-radius: 20px;
            top: 0;
            left: 0;
            transform: scale(.70);
            background: linear-gradient(7deg, rgba(201, 201, 201, 1) 0%, rgba(252, 252, 252, 1) 58%);
            box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
            transition: .5s;
        }

        & input:checked[type="checkbox"] {
            background-color: #387cfa;
        }

        & input:checked[type="checkbox"]::before {
            left: 18px;
        }
    }
}