.signin-backdrop {
    background: rgba(4, 28, 21, .7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.site-header .header-register {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .55);
    text-underline-offset: 4px;
}

.site-header .header-register:hover {
    text-decoration-color: #fff;
}

.signin-modal {
    width: min(460px, 100%);
    padding: 34px 38px 30px;
    border: 1px solid rgba(13, 157, 111, .12);
    border-radius: 18px;
    text-align: center;
}

.signin-modal .modal-close {
    width: 38px;
    height: 38px;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #587169;
    cursor: pointer;
    line-height: 1;
}

.signin-modal .modal-close:hover {
    background: #eff8f5;
    color: #087a56;
}

.signin-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    color: #079a68;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.signin-brand b {
    color: #5db99b;
    font-weight: 500;
}

.signin-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 7px);
    gap: 2px;
}

.signin-brand-grid i {
    width: 7px;
    height: 7px;
    border-radius: 1px;
    background: currentColor;
}

.signin-modal h2 {
    margin: 0 40px 8px;
    color: #10231d;
    font-size: 27px;
    line-height: 1.2;
}

.signin-modal > p {
    margin: 0 auto;
}

.signin-modal #login-description {
    max-width: 340px;
    color: #60766f;
    font-size: 14px;
}

.signin-provider {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.signin-provider:hover {
    transform: translateY(-1px);
}

.signin-google {
    margin-top: 24px;
    border: 1px solid #d3ded9;
    background: #fff;
    color: #18231f;
    box-shadow: 0 2px 5px rgba(16, 35, 29, .05);
}

.signin-google:hover {
    border-color: #9bbcaf;
    box-shadow: 0 5px 14px rgba(16, 35, 29, .1);
}

.signin-google svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.signin-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 17px 0;
    color: #83958f;
    font-size: 12px;
}

.signin-divider::before,
.signin-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: #dfe8e4;
}

.signin-email {
    background: #0a9d6d;
    color: #fff;
}

.signin-email:hover {
    background: #07875d;
    box-shadow: 0 5px 14px rgba(10, 157, 109, .22);
}

.signin-register {
    padding-top: 20px;
    color: #425a52 !important;
    font-size: 14px;
}

.signin-register a {
    color: #078a60;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.signin-modal .signin-terms {
    max-width: 330px;
    padding-top: 15px;
    color: #81918c;
    font-size: 11px;
    line-height: 1.45;
}

@media (max-width: 560px) {
    .signin-backdrop {
        align-items: end;
        padding: 0;
    }

    .signin-modal {
        width: 100%;
        padding: 30px 22px calc(24px + env(safe-area-inset-bottom));
        border-radius: 22px 22px 0 0;
    }

    .signin-brand {
        margin-bottom: 16px;
    }

    .signin-modal h2 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .signin-provider {
        transition: none;
    }
}
