/* NAO Restricted Access B2B - Front Office Styles */

/* Styles pour les champs du formulaire d'inscription */
#customer-form .form-group {
    margin-bottom: 1.5rem;
}

#customer-form .form-control-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#customer-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: none;
}

#customer-form .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Style spécifique pour le champ SIRET */
#customer-form .siret-field {
    margin-top: -0.5rem; /* Réduire l'espace au-dessus du champ SIRET */
}

#siret {
    background-color: #f8f9fa;
}

/* Supprimer le texte "Optionnel" des champs */
#customer-form .form-control-comment {
    display: none;
}

/* Style pour les champs requis */
#customer-form .required {
    color: #dc3545;
    margin-left: 0.25rem;
}

/* Ajustement pour les messages d'erreur */
#customer-form .help-block {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.nao-restricted-access-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    text-align: center;
}

.nao-restricted-access-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.nao-restricted-access-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.nao-restricted-access-subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.nao-restricted-access-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.nao-restricted-access-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nao-restricted-access-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nao-restricted-access-btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.nao-restricted-access-btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.nao-restricted-access-btn-outline {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.nao-restricted-access-btn-outline:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nao-restricted-access-card {
        padding: 2rem 1.5rem;
    }
    
    .nao-restricted-access-title {
        font-size: 1.8rem;
    }
    
    .nao-restricted-access-subtitle {
        font-size: 1.2rem;
    }
    
    .nao-restricted-access-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nao-restricted-access-btn {
        width: 100%;
    }
}
