@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

body {
    font-family: 'arial', sans-serif;
    /* color: black; */
    /* background-color: #F5F5F5; */
}

.box-wrapper {
    max-width: 576px;
}

.title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
    /* font-weight: 700; */
}

.button-wrapper {
    width: 85%;
}

.button {
    letter-spacing: 1px;
    font-size: 1.15rem;
    font-family: 'Rubik', sans-serif;   
    font-weight: 700;
    background-color: #5FD04A;
    background: linear-gradient(180deg, #7EE450 0%, #3BD072 100%);
    color: white;
    border: 3px solid #DAFFC9;
}
.button:hover,
.button:focus {
    color: white;
}

.info {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
    text-align: justify;
}

.select-lang { 
    text-align: right;
    font-size: 12px;
    margin: 0;
    padding: 0;
}
.select-lang li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
    margin-right: 2px;
}

.icon-animate {
    display: inline;
}

.bounce {
    animation: bounce 3s ease infinite;
}

.form-check-inline {
    font-size: 0.875rem;
    margin-right: 0.25rem;
}
.form-check-inline:last-child {
    margin-right: 0;
}

@keyframes bounce {
    70% {
        transform: translateY(0%);
    }
    80% {
        transform: translateY(-15%);
    }
    90% {
        transform: translateY(0%);
    }
    95% {
        transform: translateY(-7%);
    }
    97% {
        transform: translateY(0%);
    }
    99% {
        transform: translateY(-3%);
    }
    100% {
        transform: translateY(0);
    }
}
