body {
    margin: 5vh 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 95vh;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
}

.container {
    max-width: 400px;
    margin: 20px;
}

.logo img {
    width: 200px;
    aspect-ratio: 1;
    background-color: #031e0d7c;
    display: inline-block;
    border-radius: 100%;
    margin-bottom: 20px;
}

.title {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.message {
    font-size: 1.2rem;
    font-weight: bold;
    color: red;
    margin-bottom: 40px;
}

.notranslate {
    unicode-bidi: isolate;
}

.actions {
    flex-direction: column;
    gap: 15px;
}

.button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(0, 255, 140, 0.5);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.button-primary {
    background-color: #90ee90;
    color: #000;
}

.button-primary:hover {
    background-color: #32cd32;
}

.button-secondary {
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #ccc;
}

.button-secondary:hover {
    background-color: #e0e0e0;
}

.note {
    font-size: 0.75rem;
    color: #3f3f3f;
    text-align: center;
    line-height: 0.5;
}

.note a {
    color: #004b9b;
    text-decoration: none;
}

.instructions {
    display: none;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 0.5rem;
}

.instructions img {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -40%);
    animation: move-up-down 3.7s infinite;
}

@keyframes move-up-down {
    0% {
        transform: translate(-50%, -40%);
    }
    50% {
        transform: translate(-50%, -70%);
    }
    100% {
        transform: translate(-50%, -40%);
    }
}

#popup {
    position: fixed;
    width: 60%;
    max-width: 300px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f8f8;
    color: black;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

#popup.show {
    visibility: visible;
    opacity: 1;
}

#qrcodepaint {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#qrcodepaint:hover {
    cursor: pointer;
    transform: scale(1.5) translateY(-10vh);
    transition: transform 0.3s;
    display: fixed;
}

#grecaptcha-widget {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}