@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    line-height: 32px;
    color: #0f0f0f;
    font-weight: 500;
    padding-top: 103px;
}

a {
    color: #185B2E;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: color 0.2s;
}

a:active, a:focus, a:hover {
    color: #8ad855;
}

::placeholder {
    opacity: 1 !important;
    color: #6c6c6c;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    background-color: #185B2E;
    font-size: 18px;
}

.hi {
    display: flex;
    align-items: center;
    padding: 35px 15px;
}

.lg {
    flex: 1;
}

.lg img {
    width: 192px;
    display: block;
}

.header-nav {
    flex: 1;
    text-align: right;
}

.header-nav a {
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.header-nav a svg {
    margin-right: 6px;
    vertical-align: middle;
    margin-top: -2px;
}

.pw {
    display: flex;
    height: calc(100vh - 103px);
    overflow: hidden;
}

.fc {
    width: 41.6667%;
    flex-shrink: 0;
    overflow-y: auto;
}

.ic {
    flex: 1;
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.pi {
    width: 80%;
    max-width: 100%;
    margin: 50px auto;
}

.rg {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    padding-bottom: 120px;
}

.rh {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 8px;
}

.dr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.dh {
    flex: 1;
    min-width: 0;
}

.rh h1 {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    width: 100%;
}

.dw {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.35;
    color: #3d3d3d;
    font-weight: 600;
}

.dw strong {
    color: #b71c1c;
    font-weight: 700;
}

.dm {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.dml {
    font-size: 14px;
    font-weight: 600;
    color: #6c6c6c;
}

.dmv {
    font-size: 22px;
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.2;
    margin-top: 2px;
    font-variant-numeric: tabular-nums;
}

#fm {
    width: 100%;
}

.fd {
    margin-bottom: 4px;
}

.fd label {
    display: block;
    margin-top: 8px;
    font-size: 18px;
}

.fd input[type="text"],
.fd input[type="email"] {
    width: 100%;
    background: none;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid rgba(7, 6, 6, 0.14);
    border-radius: 0;
    padding: 0.5rem 2rem;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    color: #0f0f0f;
}

.fd input:focus {
    outline: none;
    border-bottom-color: #185B2E;
}

.ex {
    color: red;
    font-size: 14px;
    display: block;
    min-height: 4px;
}

.fr {
    display: flex;
    gap: 1.5rem;
}

.fr .fd {
    flex: 1;
}

.bs {
    background: #7CC35B;
    color: #fff;
    border-radius: 23px;
    border: 1px solid #7CC35B;
    padding: 0.5rem 1rem;
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background-color 0.2s, border-color 0.2s;
}

.bs:hover:not(:disabled) {
    background: #8ad855;
    border-color: #8ad855;
}

.bs:disabled {
    background: #b0b0b0;
    border-color: #b0b0b0;
    cursor: not-allowed;
    opacity: 0.7;
}

.bs .sp {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.rm {
    color: #d32f2f;
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
    width: 100%;
}

@media (max-width: 1199px) {
    body {
        padding-top: 107px;
        font-size: 16px;
        line-height: 22px;
    }

    .pw {
        height: calc(100vh - 107px);
    }

    .rh h1 {
        font-size: 25px;
    }

    .lg img {
        width: 200px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 92px;
    }

    .hi {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .lg img {
        width: auto;
        max-width: 50vw;
        max-height: 22px;
    }

    .pw {
        height: auto;
        flex-direction: column;
    }

    .fc {
        width: 100%;
        height: calc(100vh - 92px);
        overflow-y: auto;
    }

    .ic {
        display: none;
    }

    .rg {
        padding: 1rem;
        padding-bottom: 4rem;
    }

    .fd label {
        font-size: 18px;
    }

    .fd input {
        width: 100% !important;
    }

    .dr {
        flex-direction: column;
        align-items: stretch;
    }

    .dm {
        align-self: flex-end;
    }
}
