/* Index page specific styles for auth portal */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f9ff;
    color: #333;
}

.redirect-container {
    text-align: center;
    max-width: 500px;
    padding: 30px;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    color: #cc0b0b;
}

p {
    margin-bottom: 20px;
}

a {
    color: #cc0b0b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.auth0-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #cc0b0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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