.error-message {
    color: #ffc107;
    font-size: 12px;
    margin-top: 5px;
    display: none; /* در ابتدا مخفی باشد */
}

[v-cloak] > * {
    display: none !important;
}
[v-cloak] .copy-mobile-background{
    display: none !important;
}
[v-cloak] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

[v-cloak]::before {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
