﻿:root {
    --form-control-color: #F3C525;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: Literata;
}
h1 {
    color: rgb(35, 110, 231);
    font-family: Literata;
    font-style: normal;
}



/*input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: rgb(19,114,211);
    width: 1.25em;
    height: 1.25em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(0.3em);
    display: grid;
    place-content: center;    
}

input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: CanvasText;
}

input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);    
}

    input[type="radio"]:checked::before {
        transform: scale(0.9);
    }

.form-check-label {
    font-family: Literata;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.8em;
    border-bottom: 1px solid rgba(35, 110, 231, .5);
}

.form-check-label + .form-check-label {
    margin-top: 1em;
}

.form-check {
    padding-bottom: 15px !important;
    min-width: 95% !important;
}

@media (max-width: 767px) {

    h1 {
        text-decoration: rgba(10, 10, 10, 0.85);
        font-size: 32px;
    }

    .form-check-label {
        font-size: 16px;
        padding-left:5px
    }

    input[type="radio"] {
        width: 1.55em;
        height: 1.55em;
    }
    .btn-forward{
        text-align:center;
        padding-top:20px;
        font-size:26px;
    }

    input[type="radio"]:checked::before {
        transform: scale(1);
    }
}*/
