/* Style the inputs */
input {
    background: rgb(245, 245, 245);
    border: unset;
    border-radius: 14px;

    outline: none;

    color: rgb(57, 57, 57);
    font-size: 18px;

    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;

    transition: 0.4s;
}

    input:hover {
        transition: 0.2s;
        background: rgb(235, 235, 235);
    }

input[type="checkbox"] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 23px;

    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;

    accent-color: rgb(247, 197, 47);
}