/*
 *  Initial-load splash for the VTClient SPA. Shown by index.html before
 *  the Ext JS bundle has booted; both #loading-mask and #loading-parent
 *  are destroyed by Application.launch() once the viewport is up.
 *
 *  Visual: Tangix-blue gradient backdrop + centered VirtualTester
 *  wordmark + minimalist spinning ring. Matches the auth pages
 *  (login.php, forgot, reset) and the MyAccount hero.
 */

#loading-mask {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #235581 50%, #2d6da3 100%);
    z-index: 9998;
}

#loading-parent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#loading-parent .vtc-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

#loading-parent .vtc-subtitle {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
}

#loading-parent .vtc-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: vtc-spin 0.9s linear infinite;
}

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