/* Reset básico */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Fundo */
.redirect-wrapper {
    min-height: 100%;
    background: linear-gradient(135deg, #0b5ed7, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.redirect-box {
    background: #ffffff;
    color: #003366;
    width: 360px;
    max-width: 90%;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Logo */
.redirect-box .logo {
    max-width: 160px;
    margin-bottom: 20px;
}

/* Texto */
.redirect-box .message {
    font-size: 15px;
    margin-bottom: 20px;
}

/* Spinner */
.spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 20px;
    border: 4px solid #e9ecef;
    border-top-color: #ff9900;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fallback */
.redirect-box .fallback {
    font-size: 13px;
}

.redirect-box .fallback a {
    color: #0b5ed7;
    text-decoration: none;
    font-weight: 600;
}
