﻿/* Fond général Identity */
.identity-background {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f6f9, #e9edf3);
    padding: 20px;
}

/* Conteneur principal */
.identity-container {
    width: 100%;
    max-width: 420px;
}

/* État de chargement */
.identity-loading {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
}

/* Spinner simple */
.spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #ddd;
    border-top-color: #276688;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
