h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
blockquote,
q,
li,
dt,
dd,
th,
td,
caption,
label,
legend,
input,
textarea,
select,
option,
a,
strong {
    font-family: "Sora", sans-serif !important;
}

body {
    background-color: #eaeff8;
}

.bg-form {
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
}

.h4-v1 {
    font-size: 18px;
    font-weight: 600;
}

.h2-v1 {
    font-size: clamp(27px, 3vw, 46px);
    line-height: normal;
    font-weight: 500;
}

.btn-v1 {
    background-color: black;
    color: white;
    padding: 13px 30px;
    border: 0;
    border-radius: 25px;
    font-weight: 400;
    font-size: 14px;
    transition: 0.5s;
}

.btn-v1:hover {
    background-color: rgb(61, 61, 61);
}

.p-v1 {
    font-size: 18px;
    font-weight: 600;
}

.label-size {
    font-size: 12px;
}

.select-style,
.input-style,
.textarea-style {
    border-radius: 23px;
    padding: 1rem 1.5rem;
    border: 0;
    background-color: white;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
}

.form-check-input:checked {
    background-color: #275DF9 !important;
    border-color: none !important;
}

/* Spinner */
.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #474bff 94%, #0000) top/9px 9px no-repeat,
        conic-gradient(#0000 30%, #474bff);
    mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
    animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}