/* Index/redirect-pagina styling. */

.redirect-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #3c3475 0%, #5a4f9c 100%);
}

.redirect-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
}

.redirect-container h1 {
    color: #3c3475;
    margin-bottom: 20px;
}

.redirect-container p {
    color: #666;
    margin-bottom: 30px;
}

.redirect-screen .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e16b30;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: redirect-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes redirect-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.portal-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.portal-links h3 {
    color: #3c3475;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portal-link {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    background: #e16b30;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.portal-link:hover {
    background: #c55a25;
}

.portal-link.admin {
    background: #3c3475;
}

.portal-link.admin:hover {
    background: #2d2758;
}