input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
    background: white;
    border-radius: 5px;
    padding: 2px 10px;
    outline: none;
    font-size: 1.5rem;
    font-family: "AA";
    font-weight: 500;
    width: 150px;
    min-width: 150px;
    border: 2px solid black;
}

input[type="number"]::placeholder {
    font-size: 1rem;
}

.input--block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.input--block label {
    font-size: 1.25rem;
}

form .form--inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 60px;
}

button.submit--btn {
    margin-top: 60px;
    font-size: 1.75rem;
    width: 300px;
    padding: 10px 0;
}

.form--col {
    width: 40%;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 60px;
    height: 30px;
    background: rgb(255, 154, 154);
    border-radius: 20px;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: pointer;

    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

input[type="checkbox"]:after {
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #000000;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;

    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

input[type="checkbox"]:hover:after {
    left: 5px;
}

input[type="checkbox"]:active:after {
    left: 15px;
    height: 15px;
}

input[type="checkbox"]:checked:after {
    left: calc(100% - 28px);
    height: 26px;
}

input[type="checkbox"]:checked {
    background: rgb(0, 174, 12);
}

input[type="checkbox"]:checked:hover:after {
    left: calc(100% - 31px);
    height: 26px;
}

input[type="checkbox"]:checked:active:after {
    left: calc(100% - 41px);
    height: 15px;
}

select {
    background: white;
    border-radius: 5px;
    padding: 2px 10px;
    outline: none;
    font-size: 1rem;
    font-family: "AA";
    font-weight: 500;
    width: 200px;
    min-width: 220px;
    border: 2px solid black;
}

@media screen and (max-width: 550px) {
    .form--inner {
        flex-direction: column;
    }

    .form--col {
        width: 100%;
    }
}

button.auto {
    width: fit-content;
    background: limegreen;
    color: white;
    padding: 6px 12px;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'AA';
    text-align: center;
    border: 0;
    outline: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    margin-bottom: 30px;
}

button.auto:hover {
    box-shadow: 0 0 5px limegreen;
}

button.auto img {
    filter: invert(1);
}

@media screen and (max-width: 550px) {
    button.auto {
        font-size: 1rem;
    }
}