*,
*::before,
*::after {
    box-sizing: border-box;
}

*:not(dialog) {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/* ----------------------------------------- */
:root {
    --primary-color: #13484e;
    --dark-color: #181818;
    --font-primary: "Google Sans", sans-serif;
}

.logo-img {
    max-width: 225px;
    margin: 35px auto;
}

body {
    color: var(--dark-color);
    font-family: var(--font-primary);
    font-size: 15px;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    top: -40px;
    background-color: #ececfb;
    background-color: #ececfb;
    opacity: 0.45;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #ececfb 14px), repeating-linear-gradient(#fbfbfb55, #fbfbfb);
}

h1 {
    color: var(--primary-color);
}

.single-option {
    margin-bottom: 10px;
}

::placeholder {
    font-size: 14px;
}

.form {
    padding: 50px 30px 30px;
    background: linear-gradient(0deg, #bffbe0, #fff);
    /* border-top: 1px solid #9debf8; */
    box-shadow: -7px -7px 0px 15px rgb(255 255 255 / 10%), 7px 7px 10px -4px rgba(255, 255, 255, 0.27);
}

.form-outer h6 {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-block img {
    border-radius: 20px 20px 0 0;
}

label.btn {
    font-size: 12px;
    margin-top: 5px;
}

.btn {
    border-radius: 30px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: #2fce88;
    border-color: #b9edd6;
    border-radius: 30px;
    color: #fff;
}

.btn-check+.btn {
    background-color: #fafafa;
    border-color: #f2f2f2;
}

.btn-submit {
    min-width: 120px;
}

input.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: rgb(19 72 78 / 45%);
}
p.info{
    text-align: justify;
    letter-spacing: -.21px;
}

@media (max-width:575px) {
    label.pe-4 {
        display: block;
    }

    .form {
        padding: 30px 15px 30px;
    }

    ::placeholder {
        font-size: 12px;
    }

    .form-control {
        padding: .375rem .5rem;
    }

    .info {
        font-size: 13px;
    }
}