body {
    background: #f8fafc;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

div.body-content {
    width: auto;
    height: auto;
}

#navbarNav > ul > li > a {
    color: #0f172a !important;
}

.card-redirect {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #0ea5e9;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0,0,0,0.1);
    border-top: 5px solid #0ea5e9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 25px auto;
}

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

h2 {
    font-weight: 600;
    color: #0f172a;
}

.subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.brand {
    color: #0ea5e9;
    font-weight: 600;
}

.footer-text {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 20px;
}

.highlight {
    background-color: #3c5e9b;
    color: white;
    border: 1px solid #3c5e9b;
}
.highlight-top {
    background-color: #3c5e9b;
    color: white;
    border: 0.2px solid #3c5e9b;
}