@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Define custom CSS variables */
:root {
    --font-montse: "Montserrat", sans-serif;
    --background-color: #3F30FF;
}

/* Optional: apply font or shadow using a custom class */
.font-montse {
    font-family: var(--font-montse);
}

.bg-btn {
    background-color: var(--background-color);
}

.bg-btn:hover {
    background-color: #fc8b54;
}

.bg-lightgray {
    background-color: #F8F8F8;
}

.w-500 {
    width: 500px;
}

input[type="checkbox"] {
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    background-color: white;
}

input[type="checkbox"]:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 20px;
    height: 20px;
    background: #3F30FF;
    color: #fff;
    border-color: #3F30FF;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    display: flex;
    justify-content: center;
}

@media (min-width:640px) {
    section form::-webkit-scrollbar {
        width: 8px;
        background-color: #fff;
    }

    section form::-webkit-scrollbar-thumb {
        background-color: #555353;
        border-radius: 8px;
    }
}

@media (max-width:575px) {
    .w-500 {
        width: 350px;
    }
}