h1:focus {
    outline: none;
    }
    
    #blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    }
    
    #blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    }
    
    .blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
    }
    
    .blazor-error-boundary::after {
    content: "An error has occurred."
    }

@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

body {
    color: #00305E !important;
    font-family: 'Montserrat' !important;
    background: hsl(0, 0%, 100%);
    margin: 0;
    padding: 0;
    padding-bottom: 25px;
}

    body::before {
        --line: hsla(0, 0%, 0%, 0.25);
        content: "";
        height: 100vh;
        width: 100vw;
        position: fixed;
        background: linear-gradient(90deg, var(--line) 1px, transparent 1px 10vmin) 0 -5vmin / 10vmin 10vmin, linear-gradient(var(--line) 1px, transparent 1px 10vmin) 0 -5vmin / 10vmin 10vmin;
        mask: linear-gradient(-26deg, transparent 30%, rgb(0, 0, 0));
        top: 0;
        z-index: -1;
        animation: moveBackground 60s linear infinite;
    }

.header {
    background-color: #1b3b58;
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 20px;
}

    .header img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: 40px;
        margin-top: -10px;
    }

    /*Scroll bars*/
* {
    scrollbar-width: auto;
    scrollbar-color: #4c6e8e #ffffff;
}

    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 16px;
    }

    *::-webkit-scrollbar-track {
        background: #ffffff;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #4c6e8e;
        border-radius: 10px;
        border: 3px solid #ffffff;
    }

    
    
    /* Default buttons/labels/etc. */
    .button-pill {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #4c6e8e;
    border: 1px solid #4b6e8f;
    color: #fff;
    transition: all ease 0.2s;
    min-width: 180px;
    border-radius: 25px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .button-pill:hover, .button-pill:active {
    background-color: #00305e;
    }

.center {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.button-quiz {
    padding: 10px 20px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #4b6e8f;
    color: #00305E;
    transition: all ease 0.2s;
    min-width: 180px;
    border-radius: 25px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .button-quiz.incorrect {
        animation: horizontal-shaking 0.5s;
        border-color:red;
        color:red;
    }

@keyframes horizontal-shaking {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(5px)
    }

    50% {
        transform: translateX(-5px)
    }

    75% {
        transform: translateX(5px)
    }

    100% {
        transform: translateX(0)
    }
}

.button-pill:disabled {
    background-color: #829ab0;
    cursor: default;
    border: 1px solid #708ba5;
}
    
    .btn-outline {
    background-color: transparent;
    border: 1px solid #4b6e8f;
    color: #00305e;
    }
    
    .btn-outline:hover {
    background-color: #00305e;
    border: 1px solid #00305e;
    color: #fff;
    }
    
    .button-secoundary {
    padding: 10px 20px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #4b6e8f;
    transition: all ease 0.2s;
    min-width: 180px;
    border-radius: 25px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
    }
    
    .home-card {
    display: flex;
    flex-direction: column;
    background: #f2f5f7;
    margin: 0;
    border-radius: 8px;
    border: 10px solid #f2f5f7;
    height: 100%;
    color: #00305E !important;
    }
    
    .home-card-alt {
    display: flex;
    flex-direction: column;
    background: #f2f5f7;
    margin: 0;
    border-radius: 8px;
    border: 10px solid #f2f5f7;
    color: #00305E !important;
    margin-bottom: 15px;
    }
    
    .content-card {
    background: #ffffff;
    border-radius: 8px;
    border: 10px solid #ffffff;
    }
    
    /* Loader */
    
    .loadercontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }
    
    .loader {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
    }
    
    .loadercircle {
    fill: none;
    stroke: #00305E;
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
    }
    
    @keyframes rotate4 {
    100% {
    transform: rotate(360deg);
    }
    }
    
    @keyframes dash4 {
    0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    }
    
    50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
    }
    
    100% {
    stroke-dashoffset: -125px;
    }
    }

.hero {
    margin-top: calc(50vh - 150px - 50px) !important;
    /* Element height - header height */
    width: 100%;
    text-align: center;
    height: 150px;
}


.teamsofttec {
    margin-top: 0px;
    color: transparent;
    font-size: clamp(3rem, 6vw + 1rem, 12rem);
    font-weight: 800;
    background-clip: text;
    background-image: linear-gradient(90deg, #325f89 30%, #03203a 100%);
}

.partof {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.countinue {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
}

.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin: auto;
    padding:10px;
}


label {
    font-size: 1rem;
    color: #00305E;
    margin-left: 15px;
    margin-right: 10px;
}

input:not([type="checkbox"]), select {
    margin-top: 5px;
    margin-bottom: 20px;
    height: 40px;
    border-radius: 99px;
    border: 2px solid #C8C8C8;
    padding: 0 20px;
    font-size: 1rem;
    color: #00305E;
    width: 100%;
    box-sizing: border-box;
}

select {
    height: 44px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

    .checkbox-wrapper input[type="checkbox"] {
        /* Add any specific styles for the checkbox */
    }

    .checkbox-wrapper label {
        margin-left: 8px;
    }

.formtitle {
    width:100%;
    margin-top: 30px;
    margin-bottom: 0px;
    text-align: center;
    color: transparent;
    font-weight: 800;
    background-clip: text;
    background-image: linear-gradient(90deg, #325f89 30%, #03203a 100%);
}

.validation-message {
    color:red;
    margin-top: -20px;
    margin-left: 15px;
    margin-bottom:10px
}

.person-input {
    width:100%;
    opacity: 0;
    transition: opacity 0.5s ease; /* Smooth transition */
    height:0px!important;
}

    .person-input.show-input {
        opacity: 1;
        height: 84px !important;
    }

.button-group {
    flex-grow: 1;
    margin: auto;
}

    .button-group input[type="radio"] {
        display: none;
    }

    .button-group label {
        display: inline-block;
        padding: 10px 20px;
        margin: 0;
        cursor: pointer;
        border: 1px solid #4b6e8f;
        border-radius: 4px;
        background-color: #4c6e8e;
        color: white;
        border-radius: 99px;
        transition: all ease 0.2s;
        text-align: center;
        flex-grow: 1;
        flex-basis: 0;
        width: 75px;
        font-size: 13px;
    }

    .button-group input[type="radio"]:checked + label {
        background-color: white;
        color: #00305e;
        border: 1px solid #4b6e8f;
    }

fieldset {
    border: 0;
    display: flex;
}