.auth-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f5f5f5;
}

.auth-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #232f3e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.auth-loading-text {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
    font-family: 'Amazon Ember', Arial, sans-serif;
}

.auth-error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f5f5f5;
    padding: 24px;
}

.auth-error-title {
    color: #d13212;
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Amazon Ember', Arial, sans-serif;
}

.auth-error-message {
    color: #333;
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
    max-width: 400px;
    font-family: 'Amazon Ember', Arial, sans-serif;
}

.auth-retry-button {
    padding: 10px 24px;
    background-color: #232f3e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Amazon Ember', Arial, sans-serif;
}

.auth-retry-button:hover {
    background-color: #37475a;
}

