﻿/* BACKDROP */
.forza-reconnect-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(10px);
    display: none !important;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* CARD */
.forza-reconnect-card {
    background: rgba(20, 20, 20, 0.70);
    padding: 40px 35px;
    border-radius: 18px;
    text-align: center;
    width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0,0,0,0.55);
}

/* LOGO */
.forza-reconnect-logo {
    width: 140px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

/* TITLE */
.forza-reconnect-title {
    color: #00a1ff;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* TEXT */
.forza-reconnect-text {
    color: #cfcfcf;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* LOADER */
.forza-loader {
    width: 38px;
    height: 38px;
    margin: 0 auto 25px;
    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: #00ff8f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* HINT */
.forza-reconnect-hint {
    font-size: 13px;
    color: #818181;
    line-height: 1.4;
}
