@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.box-wrapper {
    max-width: 576px;
}

.title {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.button-wrapper {
    width: 75%;
}

.button {
    letter-spacing: 1px;
    font-size: 1.25rem;
    font-weight: 700;
    background-color: #FAD961;
    background-image: linear-gradient(90deg, #FAD961 0%, #F76B1C 100%);
    color: white;
}
.button:hover,
.button:active {
    color: #FFFFFF;
}

.language {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #65c8fe;
    border-radius: 100px;
}

.language .nav-item {
    font-size: 16px;
    color: #212529 !important;
    padding: 8px 24px;
}

.language .nav-item.active {
    background: #ee6103 !important;
    border-radius: 100px;
    color: #fff !important;
}


.info,
.term {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
    padding: 0;
}

.footer li {
    display: inline-block;
    list-style: none;
}

.footer li::after {
    content: '\00B7';
    padding-right: 5px;
    padding-left: 5px;
}

.footer li:last-child {
    border-right: none;
    padding-right: 0;
}

.footer li:last-child::after {
    content: none;
}

/* @keyframes glowing {
    0% {
        border: 3px solid #46a42f;
        -webkit-box-shadow: 0 0 3px #46a42f;
    }
    50% {
        border: 3px solid #4dc030;
        -webkit-box-shadow: 0 0 20px #4dc030;
        background-color: rgba(0, 187, 25, 0.25);
    }
    100% {
        border: 3px solid #46a42f;
        -webkit-box-shadow: 0 0 3px #46a42f;
    }
} */